summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0402-2.cs
blob: e51facfd1b1f8ab19627d857b78a39bb5c2cb84b (plain)
1
2
3
4
5
6
7
8
9
10
// CS0402: `C.Main<T,U>()': an entry point cannot be generic or in a generic type
// Line: 7
// Compiler options: -warnaserror -warn:4

class C
{
    public static void Main<T, U> ()
    {
    }
}