2010-04-06 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs0308-7.cs
blobbdcb6c221e67d0ba58760d643c395b879d3c3a6f
1 // CS0308: The non-generic type `Foo' cannot be used with the type arguments
2 // Line: 16
4 public class Foo
6 public string Test<T> ()
8 return null;
12 public static class Driver
14 static object UseBrokenType ()
16 return Foo<int> ().Test ();