blob: 3be56b4564be0c4e929fb8b4d5d1465ce56be918 [file] [log] [blame]
class A<T1, T2> {
constructor(x: T1, y: T2) {}
constructor(x: T1, y: Int) {}
<caret>constructor(x: T1): this(x, 1) {}
}