Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
dd4ca2cb43e932606f2630bd1f6f81f9cfb14a2e
/
.
/
compiler
/
testData
/
asJava
/
lightClasses
/
lightClassStructure
/
DeclaredWithGenerics.kt
blob: 440a2203f1e12131e660eb000d347acb10fdf24f [
file
] [
log
] [
blame
]
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