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