Merge remote branch 'upstream/master'
[mono.git] / mcs / errors / cs0246-24.cs
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
3
4 class C
5 {
6         static void Foo<T> (int i)
7         {
8         }
9
10         public static void Main ()
11         {
12                 Foo<TypeMe> (1);
13         }
14 }