mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 08:31:28 +00:00
12 lines
132 B
Plaintext
Vendored
12 lines
132 B
Plaintext
Vendored
// "Create class 'Foo'" "true"
|
|
|
|
class A {
|
|
class B {
|
|
fun test() = Foo(2, "2")
|
|
}
|
|
}
|
|
|
|
class Foo(i: Int, s: String) {
|
|
|
|
}
|