summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0118-10.cs
blob: ed6c2c5a094d788c5369e4cfb1c9678a0bc72b51 (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
{
}