fun testAssignment() { var a = 1 a = todo() } fun testVariableDeclaration() { val a = todo() } fun testPlusAssign() { fun Int.plusAssign(i: Int) {} var a = 1 a += todo() } fun todo() = throw Exception()