Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0c8f3faeecbeecb0d1430ef2b86dd192a029711c
/
.
/
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