edd269f5ff
Possible NPE in getNextSiblingIgnoringWhitespace fixed. Some warnings also removed. Last comma is replaced by semicolon. Comments are taken into account.
8 lines
162 B
Plaintext
Vendored
8 lines
162 B
Plaintext
Vendored
// "Insert lacking comma(s) / semicolon(s)" "true"
|
|
|
|
enum class MyEnum(val z: Int) {
|
|
A: MyEnum(3),
|
|
B: MyEnum(7),
|
|
C: MyEnum(12);
|
|
fun foo() = z * 2
|
|
} |