Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
a0400f59c22402736466d7a35a6f4e534823ecd8
/
.
/
compiler
/
testData
/
compileKotlinAgainstCustomBinaries
/
requireKotlinInNestedClassesJs
/
library
/
a.kt
blob: ec17d72359e4ce196590293dd2c9932e3583eece [
file
] [
log
] [
blame
]
@file
:
Suppress
(
"INVISIBLE_MEMBER"
,
"INVISIBLE_REFERENCE"
)
package
a
import
kotlin
.
internal
.
RequireKotlin
class
Outer
{
@RequireKotlin
(
"1.44"
)
class
Nested
{
@RequireKotlin
(
"1.88"
)
fun f
()
{}
}
}