4d9b19da82
#KT-18539 Fixed
17 lines
155 B
Plaintext
Vendored
17 lines
155 B
Plaintext
Vendored
// "Create function 'foo'" "true"
|
|
|
|
val baz = 1
|
|
|
|
fun test() {
|
|
val a: Int = foo()
|
|
}
|
|
|
|
fun foo(): Int {
|
|
TODO("Not yet implemented")
|
|
}
|
|
|
|
fun bar() {
|
|
|
|
}
|
|
|