[mcs] Moves using static lookup at the end of simple name lookup rules. Fixes #55348
[mono.git] / mcs / tests / test-852.cs
1 // Compiler options: -warnaserror
2
3 public class Test
4 {
5 #pragma warning disable 1634
6 #pragma warning suppress 56500
7         public static void Main ()
8         {
9         }
10 #pragma warning restore 1634
11 }