fork(2) download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public struct Thing
  6. {
  7. }
  8.  
  9. public class Container<T> where T : new()
  10. {
  11. }
  12.  
  13. public static void Main()
  14. {
  15. var x = new Container<Thing>();
  16. }
  17. }
Success #stdin #stdout 0.01s 23144KB
stdin
Standard input is empty
stdout
Standard output is empty