* HttpWebRequestTest.cs: Remove usage of deprecated Assertion class.
[mono.git] / mcs / errors / gcs0718.cs
1 // CS0718: `S': static classes cannot be used as generic arguments\r
2 // Line: 14\r
3 \r
4 static class S\r
5 {\r
6 }\r
7 \r
8 class C<T>\r
9 {\r
10 }\r
11 \r
12 class Test\r
13 {\r
14         C<S> foo;\r
15 }