diff options
author | Simon Ogorodnik <Simon.Ogorodnik@jetbrains.com> | 2017-11-02 05:32:50 +0300 |
---|---|---|
committer | Simon Ogorodnik <Simon.Ogorodnik@jetbrains.com> | 2017-11-02 18:00:04 +0300 |
commit | 2290bcbd6efc8ac8d36b88d37b4281c1a90b106c (patch) | |
tree | 93a499093e1b56fd603f99b08f8e0271fe20c49c /runners/gradle-integration-tests/testData/sourcesChange/src1 | |
parent | a10c1f852813ea1c0e4f15b3c25a7a5388bbc996 (diff) | |
download | dokka-2290bcbd6efc8ac8d36b88d37b4281c1a90b106c.tar.gz dokka-2290bcbd6efc8ac8d36b88d37b4281c1a90b106c.tar.bz2 dokka-2290bcbd6efc8ac8d36b88d37b4281c1a90b106c.zip |
Fix not rebuilding on source change
Fixes #227
Diffstat (limited to 'runners/gradle-integration-tests/testData/sourcesChange/src1')
-rw-r--r-- | runners/gradle-integration-tests/testData/sourcesChange/src1/main/kotlin/demo/HelloWorld.kt | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/runners/gradle-integration-tests/testData/sourcesChange/src1/main/kotlin/demo/HelloWorld.kt b/runners/gradle-integration-tests/testData/sourcesChange/src1/main/kotlin/demo/HelloWorld.kt new file mode 100644 index 00000000..53f22ff5 --- /dev/null +++ b/runners/gradle-integration-tests/testData/sourcesChange/src1/main/kotlin/demo/HelloWorld.kt @@ -0,0 +1,11 @@ +package demo + +/** + * @return Hello + */ +fun hello(): String = "Hello" + +/** + * @return World + */ +fun world(): String = "World"
\ No newline at end of file |