Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
4f8dad3e4ba00e23b4182ef4c50194b20bd43c8f
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
dataClasses
/
implementTraitWhichHasFinalComponent1.kt
blob: 3bcc1993bb4e4d99eaf1282476feebb93ff223bf [
file
]
// FIR_IDENTICAL
interface
T
{
<!
WRONG_MODIFIER_CONTAINING_DECLARATION
!>
final
<!>
fun component1
():
Int
=
42
}
<!
DATA_CLASS_OVERRIDE_CONFLICT
!>
data
<!>
class
A
(
val x
:
Int
)
:
T