Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
aa5987fd3dbfa6d7896d481b336c9f49e48b9179
/
.
/
compiler
/
testData
/
loadJava
/
compiledKotlin
/
class
/
RecursiveGeneric.kt
blob: 35f21b2c562b234d44c6e86675dfcc1d6fdc636b [
file
] [
log
] [
blame
]
//ALLOW_AST_ACCESS
package
test
interface
Rec
<
R
,
out
T
:
Rec
<
R
,
T
>>
{
fun t
():
T
}
interface
Super
{
fun foo
(
p
:
Rec
<*,
*>)
=
p
.
t
()
}