11 lines
106 B
C#
Raw Normal View History

// CS1525: Unexpected symbol `int'
// Line: 8
class T {
void member ()
{
int a = 1 | 2
int b;
}
}