9 lines
139 B
Plaintext
Vendored
9 lines
139 B
Plaintext
Vendored
// "Create class 'Foo'" "true"
|
|
|
|
class A<T>(val n: T) {
|
|
fun test() = this.Foo(2, "2")
|
|
|
|
inner class Foo(i: Int, s: String) {
|
|
|
|
}
|
|
} |