cleol
[mcs.git] / errors / gcs0246-4.cs
blob44540fb65756b659849920545957288f06f5a2c2
1 // CS0246: The type or namespace name `TypeMe' could not be found. Are you missing a using directive or an assembly reference?
2 // Line: 12
4 class C
6 static void Foo<T> (int i)
10 public static void Main ()
12 Foo<TypeMe> (1);