2010-04-02 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs0718.cs
blob282ff3b0312f75160ccc99cc2dbf96f8000fd4e7
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;