Initial set of Ward sgen annotations (#5705)
[mono.git] / mcs / errors / cs7003-8.cs
1 // CS7003: Unbound generic name is not valid in this context
2 // Line: 12
3
4 static class C
5 {
6         static void Foo<T> ()
7         {
8         }
9
10         static void Main ()
11         {
12                 string s = nameof (C.Foo<>);
13         }
14 }