4 lines
61 B
Kotlin
Vendored
4 lines
61 B
Kotlin
Vendored
class X<T>(val t: T) {
|
|
constructor(t: String): this(t)
|
|
}
|