Merge pull request #1900 from esdrubal/cyclic-ref
[mono-project.git] / mcs / errors / cs0718.cs
blob828b2512eeff100feff74f46e8e6da23e0ab0279
1 // CS0718: `S': static classes cannot be used as generic arguments
2 // Line: 14
4 static class S
8 class C<T>
12 class Test
14 C<S> foo;