a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
15 lines
166 B
C#
15 lines
166 B
C#
// CS1525: Unexpected symbol `i', expecting `}', `case', or `default:'
|
|
// Line: 11
|
|
|
|
class X {
|
|
|
|
static void Main ()
|
|
{
|
|
int i = 0;
|
|
|
|
switch (i){
|
|
i = 4;
|
|
}
|
|
}
|
|
}
|