2007-10-18 Jb Evain <jbevain@novell.com>
[mono.git] / mcs / errors / gcs0402-2.cs
1 // gcs0402-2.cs: `C.Main<T,U>()': an entry point cannot be generic or in a generic type\r
2 // Line: 7\r
3 // Compiler options: -warnaserror -warn:4\r
4 \r
5 class C\r
6 {\r
7     public static void Main<T, U> ()\r
8     {\r
9     }\r
10 }