Files
kotlin-fork/compiler/testData/diagnostics/tests/inline/nonPublicMember/kt14887.fir.kt
T
2021-08-04 17:33:08 +03:00

9 lines
177 B
Kotlin
Vendored

<!NOTHING_TO_INLINE!>inline<!> fun foo() {
<!UNRESOLVED_REFERENCE!>unresolved<!>().another
<!UNRESOLVED_REFERENCE!>unresolved<!>().another()
}
fun main() {
foo()
}