12 lines
156 B
C#
Raw Permalink Normal View History

// CS1522: Empty switch block
// Line: 9
// Compiler options: -warnaserror
class E
{
public static void Method (int i)
{
switch (i) {}
}
}