Files
kotlin-fork/compiler/testData/diagnostics/testsWithStdLib/native/constructor.kt
T
Denis Zharkov 99f1ab333e Report illegal modifiers and annotations on primary constructor
#KT-7057 Fixed
 #KT-6772 Fixed
2015-03-31 20:20:22 +03:00

11 lines
293 B
Kotlin

class A {
<!INAPPLICABLE_ANNOTATION!>native constructor() {}<!>
inner class B {
<!INAPPLICABLE_ANNOTATION!>native constructor() {}<!>
}
<!INAPPLICABLE_ANNOTATION!>native constructor(<!UNUSED_PARAMETER!>x<!>: Int)
<!>}
class C <!INAPPLICABLE_ANNOTATION!>[native]()<!>