Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
4783822fbc6124c4ba34c64fc79b53dde6b500f7
/
.
/
compiler
/
testData
/
loadJava
/
compiledKotlin
/
class
/
InheritTraitWithFunctionParam.kt
blob: 571531184180a3f6514cac5fcd7c30eeaa9a75ef [
file
]
package
test
interface
Trait
{
open fun f
(
a
:
String
)
{
}
}
open
class
Class
:
Trait
{
}