Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ba045e44fbc13a4a8bcfa03689115fd0a25366a9
/
.
/
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
{
}