2010-06-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs0246-4.cs
blobbd7ea63a81f563e01f713f6b7e91726fff05162b
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);