mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
15 lines
229 B
Kotlin
Vendored
15 lines
229 B
Kotlin
Vendored
// FILE: R.java
|
|
|
|
class R {
|
|
public static class id {
|
|
public static class zzz {
|
|
public static final int main = 17;
|
|
}
|
|
}
|
|
}
|
|
|
|
// FILE: 1.kt
|
|
|
|
fun box() =
|
|
if (R.id.zzz.main == 17) "OK" else "fail"
|