Quickfix for NO_BACKING_FIELD_CUSTOM_ACCESSORS

This commit is contained in:
Michał Sapalski
2013-02-18 11:42:38 +01:00
committed by Nikolay Krasko
parent d1a443d952
commit 102f49b251
4 changed files with 20 additions and 0 deletions
@@ -0,0 +1,7 @@
// "Change '$foo' to 'foo'" "true"
class A {
val foo : Int
get() = 5
val bar : Int
get() = $<caret>foo
}