Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
b32f408767cf86efaa65eb02699fe00bd61d99a6
/
.
/
compiler
/
testData
/
loadJava
/
compiledKotlin
/
classFun
/
FunInParamSuper.kt
blob: d2211784060a8458ec6cc7d8a2ad7191d37409cb [
file
]
package
test
open
class
Base
<
T
>()
{
fun foo
():
T
=
throw
Exception
()
}
class
Inh
()
:
Base
<
String
>()