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