[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / tests / test-881.cs
1 using System;
2
3 namespace A
4 {
5         class XAttribute : Attribute { }
6 }
7
8 namespace B
9 {
10         class XAttribute : Attribute { }
11 }
12
13 namespace C
14 {
15         using A;
16         using B;
17         using X = A.XAttribute;
18
19         [X]
20         class Test 
21         {
22                 public static void Main ()
23                 {
24                 }
25         }
26 }