Fix reporting errors on properties declared in constructors

This commit is contained in:
Andrey Breslav
2014-06-06 12:07:32 +04:00
parent 27f76630e6
commit 6bbc8ea951
3 changed files with 17 additions and 0 deletions
@@ -0,0 +1,3 @@
class C(<!CONFLICTING_JVM_DECLARATIONS!>val x: Int<!>) {
<!CONFLICTING_JVM_DECLARATIONS!>fun getX()<!> = 1
}