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