[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[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 }