mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 15:53:46 +00:00
10 lines
117 B
Plaintext
Vendored
10 lines
117 B
Plaintext
Vendored
// "Create class 'Foo'" "true"
|
|
|
|
fun test() {
|
|
fun nestedTest() = Foo(2, "2")
|
|
}
|
|
|
|
class Foo(i: Int, s: String) {
|
|
|
|
}
|