Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ed7ee67e4e1513f9b3ba9587b6d6e950e7a1da7f
/
.
/
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
>()