[Tests] Fix Mono.Data.Tds tests on iOS (#5501)
[mono.git] / mcs / errors / cs1522.cs
1 // CS1522: Empty switch block
2 // Line: 9
3 // Compiler options: -warnaserror
4
5 class E
6 {
7    public static void Method (int i)
8    {
9        switch (i) {}
10    }
11 }