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