mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 00:21:32 +00:00
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) {
|
|
|
|
}
|
|
} |