12 lines
112 B
Kotlin
Vendored
12 lines
112 B
Kotlin
Vendored
// FLOW: OUT
|
|
|
|
val String.<caret>foo: Int
|
|
get() = 10
|
|
|
|
/**
|
|
* Uses [foo]
|
|
*/
|
|
fun bar() {
|
|
val v = "".foo
|
|
}
|