Files
kotlin-fork/compiler/testData/diagnostics/tests/secondaryConstructors/noPrimaryConstructor.kt
T
2015-03-11 17:45:23 +03:00

9 lines
122 B
Kotlin

// !DIAGNOSTICS: -UNUSED_PARAMETER
class A {
constructor(x: Int) {
}
}
val x = A(<!NO_VALUE_FOR_PARAMETER!>)<!>