mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 08:31:28 +00:00
10 lines
212 B
Plaintext
Vendored
10 lines
212 B
Plaintext
Vendored
// "Create function 'foo'" "true"
|
|
|
|
fun test(o: Any) {
|
|
if (o is String) foo(o)
|
|
}
|
|
|
|
fun foo(o: String) {
|
|
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
|
}
|