1 2 3 4 5 6 7 8 9 10 11
// CS1523: Unexpected symbol `~' // Line: 9 class D { static int a = 1; static int b = 2; static int Main () { return (a << 1) ~ (b); } }