diff options
author | Ilya Ryzhenkov <orangy@jetbrains.com> | 2014-07-11 20:53:46 +0400 |
---|---|---|
committer | Ilya Ryzhenkov <orangy@jetbrains.com> | 2014-07-11 20:53:46 +0400 |
commit | 6afd7af76563f373e971256f8c9a7dcf42183fd4 (patch) | |
tree | afd350714842b4ec4d9145b8edd43f2962a51290 /test/data/properties/variablePropertyWithAccessors.kt | |
parent | 044308ba60a0d4462ccb7388f16ad17a31d7450d (diff) | |
download | dokka-6afd7af76563f373e971256f8c9a7dcf42183fd4.tar.gz dokka-6afd7af76563f373e971256f8c9a7dcf42183fd4.tar.bz2 dokka-6afd7af76563f373e971256f8c9a7dcf42183fd4.zip |
Migrate tests to org.jetbrains.dokka
Diffstat (limited to 'test/data/properties/variablePropertyWithAccessors.kt')
-rw-r--r-- | test/data/properties/variablePropertyWithAccessors.kt | 5 |
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 |