diff options
author | Ilya Ryzhenkov <orangy@jetbrains.com> | 2014-07-11 22:29:47 +0400 |
---|---|---|
committer | Ilya Ryzhenkov <orangy@jetbrains.com> | 2014-07-11 22:29:47 +0400 |
commit | cec0fc9f3eaa5df8fc2654ce90d87b9be48b16c0 (patch) | |
tree | f019f9483bad3726661609f5e1b3c4a466cb0034 /test/data/functions | |
parent | 09935fc1657670eaa8beb1b56718ed267404d7db (diff) | |
download | dokka-cec0fc9f3eaa5df8fc2654ce90d87b9be48b16c0.tar.gz dokka-cec0fc9f3eaa5df8fc2654ce90d87b9be48b16c0.tar.bz2 dokka-cec0fc9f3eaa5df8fc2654ce90d87b9be48b16c0.zip |
Support functions with receivers.
Diffstat (limited to 'test/data/functions')
-rw-r--r-- | test/data/functions/functionWithReceiver.kt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/data/functions/functionWithReceiver.kt b/test/data/functions/functionWithReceiver.kt new file mode 100644 index 00000000..663c3e56 --- /dev/null +++ b/test/data/functions/functionWithReceiver.kt @@ -0,0 +1,5 @@ +/** + * Function with receiver + */ +fun String.fn() { +}
\ No newline at end of file |