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