8 lines
144 B
Plaintext
8 lines
144 B
Plaintext
import java.util.ArrayList
|
|
|
|
class MyListOfPairs<T> : ArrayList<#(T, T)>() { }
|
|
|
|
fun test() {
|
|
MyListOfPairs<Int>() : ArrayList<#(Int, Int)>
|
|
}
|