Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
073a50037049a4e0869085bf4acf7c29e56210e3
/
.
/
compiler
/
testData
/
codegen
/
box
/
functions
/
referencesStaticInnerClassMethod.kt
blob: 3dfcd1e3e4cf5927e3e89bf8f47426a77bc113ce [
file
] [
log
] [
blame
]
// TARGET_BACKEND: JVM
// MODULE: lib
// FILE: R.java
class
R
{
public
static
class
id
{
public
static
final
int
main
=
17
;
}
}
// MODULE: main(lib)
// FILE: 1.kt
fun box
()
=
if
(
R
.
id
.
main
==
17
)
"OK"
else
"fail"