Quickfix for INACCESSIBLE_BACKING_FIELD

This commit is contained in:
Michał Sapalski
2013-02-18 13:20:06 +01:00
committed by Evgeny Gerashchenko
parent 8b4fac7665
commit 4209430fe6
6 changed files with 33 additions and 1 deletions
@@ -0,0 +1,6 @@
// "Change '$a' to 'a'" "true"
package foo
val a = 5
class A {
val b = foo.<caret>$a
}