[wasm] Implement GC support. Embedder must provide main loop pumping function request...
[mono.git] / mcs / errors / cs0723-3.cs
1 // CS0723: `C<T>.t': cannot declare variables of static types
2 // Line: 10
3
4 static class S<T>
5 {
6 }
7
8 public class C<T>
9 {
10         S<T> t;
11 }