Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ba045e44fbc13a4a8bcfa03689115fd0a25366a9
/
.
/
compiler
/
testData
/
loadJava
/
compiledKotlin
/
nested
/
membersReferenceOuterTP.kt
blob: b1b90b1cf1fa3bd56a310a88a14d54253a3145bd [
file
] [
log
] [
blame
]
//ALLOW_AST_ACCESS
package
test
class
MembersReferenceOuterTP
<
P
>
{
inner
class
Inner
{
fun
<
Q
:
P
>
f
()
{}
fun g
(
p
:
P
):
P
=
null
!!
val v
:
P
=
null
!!
val
<
Q
:
P
>
Q
.
w
:
Q
get
()
=
null
!!
}
}