diff options
author | Dmitry Jemerov <yole@jetbrains.com> | 2014-12-30 16:34:08 +0100 |
---|---|---|
committer | Dmitry Jemerov <yole@jetbrains.com> | 2014-12-30 16:37:19 +0100 |
commit | ef51f7e2466e28db0943d528b6b489aefd098c0d (patch) | |
tree | fed7da99ea57a6cd5443d2fb40ae90c38431d800 /test/data/functions | |
parent | 5f47bc17630ef1457b36054dc8b19011d9d14132 (diff) | |
download | dokka-ef51f7e2466e28db0943d528b6b489aefd098c0d.tar.gz dokka-ef51f7e2466e28db0943d528b6b489aefd098c0d.tar.bz2 dokka-ef51f7e2466e28db0943d528b6b489aefd098c0d.zip |
annotations work in progress
Diffstat (limited to 'test/data/functions')
-rw-r--r-- | test/data/functions/annotatedFunction.kt | 2 | ||||
-rw-r--r-- | test/data/functions/functionWithAnnotatedParam.kt | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/test/data/functions/annotatedFunction.kt b/test/data/functions/annotatedFunction.kt new file mode 100644 index 00000000..11c19672 --- /dev/null +++ b/test/data/functions/annotatedFunction.kt @@ -0,0 +1,2 @@ +inline fun f() { +} diff --git a/test/data/functions/functionWithAnnotatedParam.kt b/test/data/functions/functionWithAnnotatedParam.kt new file mode 100644 index 00000000..8922f765 --- /dev/null +++ b/test/data/functions/functionWithAnnotatedParam.kt @@ -0,0 +1,2 @@ +fun function([noinline] notInlined: () -> Unit) { +} |