22 lines
310 B
Kotlin
Vendored
22 lines
310 B
Kotlin
Vendored
package foo
|
|
|
|
// NOTE THIS FILE IS AUTO-GENERATED by the generateTestDataForReservedWords.kt. DO NOT EDIT!
|
|
|
|
enum class Foo {
|
|
BAR;
|
|
|
|
fun `class`() {
|
|
`class`()
|
|
}
|
|
|
|
fun test() {
|
|
testNotRenamed("class", { ::`class` })
|
|
}
|
|
}
|
|
|
|
fun box(): String {
|
|
Foo.BAR.test()
|
|
|
|
return "OK"
|
|
}
|