0fe5694cb7
#KT-36321 fixed
12 lines
214 B
Kotlin
Vendored
12 lines
214 B
Kotlin
Vendored
// "Create function 'bar'" "true"
|
|
// ERROR: Unresolved reference: bar
|
|
|
|
fun foo(foo: Foo) {
|
|
val s = foo.eval()
|
|
bar(s)
|
|
}
|
|
|
|
fun bar(s: String?) {
|
|
<selection>TODO("Not yet implemented")<caret></selection>
|
|
}
|