[interp] Reduce computation under calc_section mutex
[mono-project.git] / mcs / tests / test-static-using-07.cs
blob5482903bf3a0dbce1424fb6a007082be9edb0457
1 using static System.String;
2 using static S;
4 struct S
6 internal static int Foo ()
8 return 5;
12 class Test
14 public static int Main ()
16 string res = Concat ("a", "b", "c");
17 if (res != "abc")
18 return 1;
20 if (Foo () != 5)
21 return 2;
23 return 0;