aboutsummaryrefslogtreecommitdiff
path: root/test/data/properties/variablePropertyWithAccessors.kt
diff options
context:
space:
mode:
Diffstat (limited to 'test/data/properties/variablePropertyWithAccessors.kt')
-rw-r--r--test/data/properties/variablePropertyWithAccessors.kt5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/data/properties/variablePropertyWithAccessors.kt b/test/data/properties/variablePropertyWithAccessors.kt
index 87c1be38..152fb7d0 100644
--- a/test/data/properties/variablePropertyWithAccessors.kt
+++ b/test/data/properties/variablePropertyWithAccessors.kt
@@ -1,3 +1,4 @@
-var property
+var property: String
get() = "test"
- set(value) {} \ No newline at end of file
+ set(value) {
+ } \ No newline at end of file