204d9e3423
So #KT-20714 Fixed
9 lines
135 B
Plaintext
Vendored
9 lines
135 B
Plaintext
Vendored
// PROBLEM: Variable 'foo' is assigned to itself
|
|
// FIX: Remove self assignment
|
|
|
|
class Test {
|
|
var foo = 1
|
|
|
|
fun test() {
|
|
}
|
|
} |