Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6330def4271b547b5c7db5f9759e387de2908e94
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
inference
/
kt32415.kt
blob: a20efab5e40bc125b7988a0eae4b10a8382f6026 [
file
] [
log
] [
blame
]
// FIR_IDENTICAL
abstract
class
TestType
<
V
:
Any
>
{
open inner
class
Inner
(
val item
:
V
)
}
class
Derived
:
TestType
<
Long
>()
{
inner
class
DerivedInner
(
item
:
Long
):
Inner
(
item
)
}