Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
aa5987fd3dbfa6d7896d481b336c9f49e48b9179
/
.
/
compiler
/
testData
/
loadJava
/
compiledKotlin
/
nestedClasses
/
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
!!
}
}