Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
4f8dad3e4ba00e23b4182ef4c50194b20bd43c8f
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
inner
/
outerGenericParam.kt
blob: b77dd1c45f1646b097bf95403ceabeb62582c127 [
file
]
class
Outer
<
T
>
{
class
Nested
{
fun foo
(
t
:
<!
UNRESOLVED_REFERENCE
!>
T
<!>)
=
<!
DEBUG_INFO_ELEMENT_WITH_ERROR_TYPE
!>
t
<!>
}
class
Nested2
<
T
>
{
fun foo
(
t
:
T
)
=
t
}
inner
class
Inner
{
fun foo
(
t
:
T
)
=
t
}
}