package foo // NOTE THIS FILE IS AUTO-GENERATED by the generateTestDataForReservedWords.kt. DO NOT EDIT! enum class Foo { BAR; fun foo(instanceof: String) { assertEquals("123", instanceof) testRenamed("instanceof", { instanceof }) } fun test() { foo("123") } } fun box(): String { Foo.BAR.test() return "OK" }