Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
resolveConstructorDelegationCalls
/
generics3.kt
blob: 0f99fcf33c074438d546cc5218c77f9b139c91cf [
file
]
open
class
B
<
R1
,
R2
>(
x
:
R1
,
y
:
R2
)
class
A
<
T1
,
T2
>
:
B
<
T1
,
Int
>
{
<caret>
constructor
(
x
:
T1
,
y
:
Int
):
super
(
x
,
y
)
{}
}