Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
2a568be17b8f4a9af8f61b27d156c07d37c12fdc
/
.
/
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