[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs7003-5.cs
1 // CS7003: Unbound generic name is not valid in this context
2 // Line: 14
3
4 class A<T>
5 {
6         public class B
7         {
8                 public int Foo;
9         }
10 }
11
12 class X
13 {
14         string s = nameof (A<>.B);
15 }