mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 15:53:40 +00:00
12 lines
135 B
Kotlin
Vendored
12 lines
135 B
Kotlin
Vendored
// TRUE
|
|
|
|
class A {
|
|
fun foo(): Int = 12
|
|
}
|
|
|
|
class B(val a: A) {
|
|
val prop1 get() = a.fo<caret>o()
|
|
}
|
|
|
|
// TODO
|
|
// SKIP_ANALYZE_CHECK |