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