New tests.
[mono.git] / mcs / errors / gcs0723.cs
1 // CS0723: `C<T>.t': cannot declare variables of static types\r
2 // Line: 10\r
3 \r
4 static class S<T>\r
5 {\r
6 }\r
7 \r
8 public class C<T>\r
9 {\r
10         S<T> t;\r
11 }