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