2010-06-04 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs0305-4.cs
blob2697abecda04d3138cc8591c46d7d62f30c7ab9f
1 // CS0305: Using the generic type `A.B<T>' requires `1' type argument(s)
2 // Line: 12
4 class A
6 class B<T>
7 {
10 static void Main()
12 B b = new B<A>();