Introduce Property: Fix extraction of expressions referring to primary constructor parameters

#KT-12294 Fixed
(cherry picked from commit 78212a4)
This commit is contained in:
Alexey Sedunov
2016-06-23 17:20:06 +03:00
parent c075d27731
commit 00ad37b769
8 changed files with 55 additions and 16 deletions
@@ -0,0 +1,4 @@
// EXTRACTION_TARGET: property with initializer
class Foo(s: String) {
val l = <selection>(s + "1")</selection>.length
}