Supported properties in partial compilation of package.

Original commit: 733de56178
This commit is contained in:
Evgeny Gerashchenko
2014-02-19 22:17:32 +04:00
parent e676bd841d
commit 06cb6eb030
5 changed files with 32 additions and 4 deletions
@@ -7,3 +7,6 @@ fun foo() {
fun baz() {
}
val prop1 = ""
val prop2 = prop1
@@ -7,3 +7,6 @@ fun foo() {
fun baz() {
}
val prop1 = ""
val prop2 = prop1
@@ -1,9 +1,24 @@
package test
fun bar(i: Int): String {
simpleVar = ":) " + simpleVar
return "$i ${quux()} $i"
}
fun quux(): String {
return "quux"
}
}
var simpleVar = prop1
var fieldlessVar: String
get() = ""
set(value) {}
deprecated("")
val fieldlessValWithAnnotation: String
get() = ""
var delegated: String by kotlin.properties.Delegates.notNull()