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

gcs0118.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d69a42c6cf0c88d0e4c4676e6a3a46fff4614031 (plain)
1
2
3
4
5
6
7
8
9
10
// CS0118: `N' is a `namespace' but a `type' was expected
// Line: 8

namespace N
{
}

public class C<T>  where T : N
{
}