Enhancement for "join declaration and assignment": now can handle also local variables, relevant inspection added #KT-12095 Fixed
This commit is contained in:
+12
@@ -0,0 +1,12 @@
|
||||
// IS_APPLICABLE: false
|
||||
class A {
|
||||
constructor() {
|
||||
a = 1
|
||||
}
|
||||
|
||||
constructor(aa: Int) {
|
||||
a = aa
|
||||
}
|
||||
|
||||
val a<caret>: Int
|
||||
}
|
||||
Reference in New Issue
Block a user