fork download
  1. using Foo = Foo<int>;
  2.  
  3. public class Program {
  4. public static void Main() {
  5. var a = new Foo<int>();
  6. var b = new Foo();
  7. }
  8. }
  9. public class Foo<T> {
  10. public T Bar { get; set; }
  11. }
  12.  
  13. //https://pt.stackoverflow.com/q/336844/101
Success #stdin #stdout 0.01s 13876KB
stdin
Standard input is empty
stdout
Standard output is empty