Merge pull request #1156 from felfert/master
[mono.git] / mcs / errors / cs7003-3.cs
1 // CS7003: Unbound generic name is not valid in this context
2 // Line: 10
3
4 class G<T>
5 {
6 }
7
8 class C
9 {
10         const string f = nameof (G<>);
11 }