12 lines
156 B
C#
12 lines
156 B
C#
|
// CS1522: Empty switch block
|
||
|
// Line: 9
|
||
|
// Compiler options: -warnaserror
|
||
|
|
||
|
class E
|
||
|
{
|
||
|
public static void Method (int i)
|
||
|
{
|
||
|
switch (i) {}
|
||
|
}
|
||
|
}
|