Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
fa6706d92e6b4fd10bdb26da483b20467cd68a42
/
.
/
compiler
/
testData
/
asJava
/
lightClasses
/
lightClassStructure
/
DeclaredWithGenerics.kt
blob: 440a2203f1e12131e660eb000d347acb10fdf24f [
file
]
package
test
class
Generic1
<
T
>
class
Generic1WithBounds
<
T
:
Bound1
>
class
Generic2
<
A
,
B
>
class
Generic2WithBounds
<
A
,
B
>
where
A
:
Bound1
,
A
:
Bound2
,
B
:
Generic1
<
A
>
class
Bound1
interface
Bound2