Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
inlineClasses
/
inlineClassCannotImplementInterfaceByDelegation.fir.kt
blob: ad55d9f9866f1d3b23083f2e89427c672f2ce58c [
file
]
// LANGUAGE: +InlineClasses, -JvmInlineValueClasses
interface
IFoo
object
FooImpl
:
IFoo
inline
class
Test1
(
val x
:
Any
)
:
<!
VALUE_CLASS_CANNOT_IMPLEMENT_INTERFACE_BY_DELEGATION
!>
IFoo
<!>
by
FooImpl
inline
class
Test2
(
val x
:
IFoo
)
:
IFoo
by
x