Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gcs0402.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e48662d7e5731074585bf09ed54ef02650ccc9ec (plain)
1
2
3
4
5
6
7
8
9
10
// gcs0402.cs: `TestClass<T>.Main()': an entry point cannot be generic or in a generic type
// Line: 7
// Compiler options: -warnaserror -warn:4

class TestClass<T>
{
    public static void Main ()
    {
    }
}