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