Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
4f8dad3e4ba00e23b4182ef4c50194b20bd43c8f
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
dataClasses
/
implementTraitWhichHasComponent1.kt
blob: 02fe1104d212492485455e2fe405e54a9ddd07e7 [
file
]
// FIR_IDENTICAL
interface
T
{
fun component1
():
Int
}
data
class
A
(
val x
:
Int
)
:
T