[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0576-2.cs
1 // CS0576: Namespace `Top' contains a definition with same name as alias `T'
2 // Line: 12
3
4 namespace Top
5 {
6         using T = System.Exception;
7
8         namespace T
9         {
10                 class C
11                 {
12                         T t;
13                 }
14         }
15 }