Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
codegen
/
box
/
traits
/
kt36973.kt
blob: fbec9afb53f29cb2076f097cf8493ecf41b4f8b4 [
file
]
// FILE: kt36973.kt
import
other
.*
class
C
:
IFoo
fun box
()
=
C
().
foo
()()
// FILE: IFoo.kt
package
other
interface
IFoo
{
fun foo
()
=
{
bar
()
}
private
fun bar
()
=
"OK"
}