diff options
author | Simon Ogorodnik <Simon.Ogorodnik@jetbrains.com> | 2017-02-27 19:17:15 +0300 |
---|---|---|
committer | Simon Ogorodnik <Simon.Ogorodnik@jetbrains.com> | 2017-02-27 19:17:15 +0300 |
commit | 05c5a8f20167b652f918e8260fd16453efadf5ff (patch) | |
tree | 6bcc70e637623c307844a7f1dfda0856fe795069 /core/testdata | |
parent | 20b3b0d018248cbde0c509603c52c36445d996f0 (diff) | |
download | dokka-05c5a8f20167b652f918e8260fd16453efadf5ff.tar.gz dokka-05c5a8f20167b652f918e8260fd16453efadf5ff.tar.bz2 dokka-05c5a8f20167b652f918e8260fd16453efadf5ff.zip |
Render functional type in parenthesis when it in receiver position
Diffstat (limited to 'core/testdata')
-rw-r--r-- | core/testdata/format/renderFunctionalTypeInParenthesisWhenItIsReceiver.kt | 3 | ||||
-rw-r--r-- | core/testdata/format/renderFunctionalTypeInParenthesisWhenItIsReceiver.md | 6 |
2 files changed, 9 insertions, 0 deletions
diff --git a/core/testdata/format/renderFunctionalTypeInParenthesisWhenItIsReceiver.kt b/core/testdata/format/renderFunctionalTypeInParenthesisWhenItIsReceiver.kt new file mode 100644 index 00000000..84f78dfb --- /dev/null +++ b/core/testdata/format/renderFunctionalTypeInParenthesisWhenItIsReceiver.kt @@ -0,0 +1,3 @@ +fun (suspend () -> Unit).foo() { + +}
\ No newline at end of file diff --git a/core/testdata/format/renderFunctionalTypeInParenthesisWhenItIsReceiver.md b/core/testdata/format/renderFunctionalTypeInParenthesisWhenItIsReceiver.md new file mode 100644 index 00000000..c9856976 --- /dev/null +++ b/core/testdata/format/renderFunctionalTypeInParenthesisWhenItIsReceiver.md @@ -0,0 +1,6 @@ +[test](test/index) / [kotlin.SuspendFunction0](test/kotlin.-suspend-function0/index) + +### Extensions for kotlin.SuspendFunction0 + +| [foo](test/kotlin.-suspend-function0/foo) | `fun (suspend () -> Unit).foo(): Unit` | + |