2009-06-17 Marek Safar <marek.safar@gmail.com>
[mono.git] / mcs / errors / gcs0246-4.cs
1 // CS0246: The type or namespace name `TypeMe' could not be found. Are you missing a using directive or an assembly reference?\r
2 // Line: 12\r
3 \r
4 class C\r
5 {\r
6         static void Foo<T> (int i)\r
7         {\r
8         }\r
9 \r
10         public static void Main ()\r
11         {\r
12                 Foo<TypeMe> (1);\r
13         }\r
14 }\r