[mcs] Use correct types comparer for comparing hidden imported interface members...
[mono.git] / mcs / tests / test-static-using-07.cs
1 using static System.String;
2 using static S;
3
4 struct S
5 {
6         internal static int Foo ()
7         {
8                 return 5;
9         }
10 }
11
12 class Test
13 {
14     public static int Main ()
15     {
16                 string res = Concat ("a", "b", "c");
17                 if (res != "abc")
18                         return 1;
19
20                 if (Foo () != 5)
21                         return 2;
22
23                 return 0;
24     }
25 }