Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
5e49b472f81ed95098eec9749aa2ad0415fac731
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
cyclicHierarchy
/
nestedClassInSuperClassParameter.kt
blob: d4d20b49b4894ee08d4e77bd5c4d124e23bc641a [
file
]
// FIR_IDENTICAL
open
class
X
<
T
>
class
A
:
X
<
A
.
B
>()
{
class
B
}