[mini] Fix test compiling when running !MOBILE
[mono.git] / mcs / errors / cs0718.cs
1 // CS0718: `S': static classes cannot be used as generic arguments
2 // Line: 14
3
4 static class S
5 {
6 }
7
8 class C<T>
9 {
10 }
11
12 class Test
13 {
14         C<S> foo;
15 }