Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6fc27c22f44d8051bf2e89f1657c0d9741c281c0
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
inlineClasses
/
inlineClassCannotImplementInterfaceByDelegation.kt
blob: 5fcdc27e41679624dd23efd3b53c23032791d234 [
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