5 lines
137 B
Plaintext
Vendored
5 lines
137 B
Plaintext
Vendored
import java.lang.reflect.Constructor
|
|
|
|
fun <T> foo(constructor: Constructor<T?>, args: Array<Any?>) {
|
|
constructor.newInstance(*args)
|
|
} |