Refactor inline properties tests

This commit is contained in:
Alexey Tsvetkov
2017-08-22 22:03:02 +03:00
parent 44e8ae3571
commit 73b63bb343
29 changed files with 138 additions and 177 deletions
@@ -0,0 +1,11 @@
package inline
class A {
var z = 0
inline var f: Int
get() = z
set(p: Int) {
z = p
}
}