diff options
Diffstat (limited to 'test/data/properties/variablePropertyWithAccessors.kt')
-rw-r--r-- | test/data/properties/variablePropertyWithAccessors.kt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/data/properties/variablePropertyWithAccessors.kt b/test/data/properties/variablePropertyWithAccessors.kt new file mode 100644 index 00000000..87c1be38 --- /dev/null +++ b/test/data/properties/variablePropertyWithAccessors.kt @@ -0,0 +1,3 @@ +var property + get() = "test" + set(value) {}
\ No newline at end of file |