class Stuff { static void Foo() { int x = 0; checked(x + 1).ToString(); } }
class Stuff { static void Foo() { int[] x = { 0 }; checked(x[1 - 1]) = 0; } }
class Stuff { static void Foo() { int x = 0; checked(x) = 0; } }