Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6f1b95d296c5592d3a3e71cc638994fa2ba4e4f7
/
.
/
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
()
{}
}
}