Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ba045e44fbc13a4a8bcfa03689115fd0a25366a9
/
.
/
compiler
/
testData
/
compileJavaAgainstKotlin
/
method
/
Delegation.kt
blob: 880b3c9ad0fbb59a5a39acc337a1897a089db07f [
file
] [
log
] [
blame
]
package
test
interface
Trait
{
fun foo
()
val bar
:
Int
}
class
Impl
:
Trait
{
override
fun foo
()
{}
override
val bar
=
1
}
class
Test
:
Trait
by
Impl
()