fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. test1 t = new test1();
  8. t.s = "hey";
  9. }
  10.  
  11. public class test1
  12. {
  13. public string s = "";
  14. }
  15. }
Success #stdin #stdout 0.01s 12536KB
stdin
Standard input is empty
stdout
Standard output is empty