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