Quickfix for NO_BACKING_FIELD_ABSTRACT_PROPERTY.

This commit is contained in:
Michał Sapalski
2013-02-14 12:14:50 +01:00
committed by Andrey Breslav
parent 1aee735775
commit 6cd8779126
8 changed files with 125 additions and 1 deletions
@@ -0,0 +1,5 @@
// "Change '$bar' to 'bar'" "true"
abstract class Bar {
abstract var bar : String
fun foo() = "foo" + <caret>this.$bar
}