4d9b19da82
#KT-18539 Fixed
11 lines
169 B
Plaintext
Vendored
11 lines
169 B
Plaintext
Vendored
// "Create member function 'A.foo'" "true"
|
|
|
|
class A {
|
|
fun foo(): String {
|
|
TODO("Not yet implemented")
|
|
}
|
|
}
|
|
|
|
fun test() {
|
|
println("a = ${A().foo()}")
|
|
} |