Merge pull request #1900 from esdrubal/cyclic-ref
[mono-project.git] / mcs / errors / cs7003-8.cs
blob04d8b2c57d5a6af7327ed6fc455ddad609704f55
1 // CS7003: Unbound generic name is not valid in this context
2 // Line: 12
4 static class C
6 static void Foo<T> ()
10 static void Main ()
12 string s = nameof (C.Foo<>);