Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ba045e44fbc13a4a8bcfa03689115fd0a25366a9
/
.
/
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
()
}