Files
kotlin-fork/compiler/testData/diagnostics/testsWithJsStdLib/native/optionlBody/nativeGetter.kt
T
2015-09-08 12:11:30 +03:00

13 lines
229 B
Kotlin
Vendored

@nativeGetter
fun String.foo(n: Int): Int?
@nativeGetter
fun String.bar(n: Int): Int? = noImpl
@native
interface T {
@nativeGetter
fun foo(d: Double): String?
@nativeGetter
fun bar(d: Double): String? = noImpl
}