[FIR] Fix incorrect diagnostic behaviour + several enum diagnostics
This commit is contained in:
Vendored
+6
@@ -0,0 +1,6 @@
|
||||
enum class A {
|
||||
A(1), B(2), C("test");
|
||||
|
||||
constructor(x: Int) : <!DELEGATION_SUPER_CALL_IN_ENUM_CONSTRUCTOR!>super<!>()
|
||||
constructor(t: String) : this(10)
|
||||
}
|
||||
Reference in New Issue
Block a user