a65c735feb
to ensure binary compatibility with stdlib inside IntelliJ. This includes using the latest stable kotlin API version and forbidding using experimental declarations from stdlib. ^KT-62510
30 lines
329 B
Kotlin
Vendored
30 lines
329 B
Kotlin
Vendored
@OptIn(ExperimentalStdlibApi::class)
|
|
class Usage {
|
|
|
|
}
|
|
|
|
@OptIn(ExperimentalStdlibApi::class, OtherOptIn::class)
|
|
class WithOtherArgument {
|
|
|
|
}
|
|
|
|
fun x() {
|
|
@OptIn(ExperimentalStdlibApi::class)
|
|
call()
|
|
}
|
|
|
|
@OptIn()
|
|
fun empty() {
|
|
|
|
}
|
|
|
|
@ExperimentalStdlibApi
|
|
fun direct() {
|
|
|
|
}
|
|
|
|
@kotlin.io.path.ExperimentalPathApi
|
|
fun fqName() {
|
|
|
|
}
|