Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
fcbc6b84598bef4d4ca95c593070c2a5cba1da35
/
.
/
analysis
/
analysis-api
/
testData
/
scopes
/
substitutionOverridesUnwrapping
/
GenericFromFunctionInLocalClass2.kt
blob: 735b5bef3f337cd87de6b8b31775574d282ccb69 [
file
]
// DO_NOT_CHECK_SYMBOL_RESTORE
package
test
class
SomeClass
fun
<
Outer
>
topLevel
()
{
open
class
Base
<
T
>
{
fun withOuter
():
Outer
?
=
null
fun withOuterAndOwn
(
t
:
T
):
Outer
?
=
null
}
class
<caret>
Child
:
Base
<
SomeClass
>()
{
fun noGenerics
()
{}
}
}