Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
cdbbead157df9e14cf8bf99f4d32cc123c5ab704
/
.
/
plugins
/
noarg
/
testData
/
diagnostics
/
noNoargCtorInSuperclass.kt
blob: aa164068e50f9615432ced09ae68e5612733e47a [
file
]
// FIR_IDENTICAL
annotation
class
NoArg
open
class
Base
(
val s
:
String
)
@NoArg
class
<!
NO_NOARG_CONSTRUCTOR_IN_SUPERCLASS
!>
Derived
<!>(
s
:
String
)
:
Base
(
s
)