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