1 2 3 4 5 6 7 8 9 10
// CS0133: The expression being assigned to `b' must be constant // Line: 8 class X { static void Main () { const int b = true ? 1 : b; } }