mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 08:31:28 +00:00
10 lines
236 B
Plaintext
Vendored
10 lines
236 B
Plaintext
Vendored
// "Create function 'foo'" "true"
|
|
|
|
fun test() {
|
|
println("a = ${foo()}")
|
|
}
|
|
|
|
fun foo(): String {
|
|
throw UnsupportedOperationException("not implemented") //To change body of created functions use File | Settings | File Templates.
|
|
}
|