Files
kotlin-fork/compiler/testData/diagnostics/tests/inline/nonPublicMember/localClass2.kt
T
Denis Zharkov 849b8acbf8 Replace annotations with brackets in testData
Just in tests that changed after deprecation
2015-05-07 22:36:16 +03:00

13 lines
180 B
Kotlin
Vendored

public fun test() {
class Z {
public fun localFun() {
}
}
<!NOT_YET_SUPPORTED_IN_INLINE!>@inline fun localFun2() {
Z().localFun()
}<!>
}