Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
resolveConstructorDelegationCalls
/
inheritanceWithGeneric.kt
blob: caf762a0da431973351a3e7deb89a4fcc982965d [
file
]
open
class
B
<
T
>
{
constructor
(
x
:
T
=
null
!!)
{}
}
class
A
:
B
<
Int
>
{
<caret>
constructor
()
{}
}