diff options
author | Simon Ogorodnik <sem-oro@yandex.ru> | 2016-11-03 12:50:37 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-03 12:50:37 +0300 |
commit | 21b2fcb46a10acc2afdf94639cd208d15856fdc3 (patch) | |
tree | 39a117667b6383f4442a5e8fedeb214c93bd43c5 /core/testdata/format/website/overloadGroup.kt | |
parent | b64579c6d444a39882ceeef08bdc3eedb584e827 (diff) | |
download | dokka-21b2fcb46a10acc2afdf94639cd208d15856fdc3.tar.gz dokka-21b2fcb46a10acc2afdf94639cd208d15856fdc3.tar.bz2 dokka-21b2fcb46a10acc2afdf94639cd208d15856fdc3.zip |
Fix for KT-14076 : empty visible div's (#108)
Fix for KT-14076 : empty visible div's
Diffstat (limited to 'core/testdata/format/website/overloadGroup.kt')
-rw-r--r-- | core/testdata/format/website/overloadGroup.kt | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/core/testdata/format/website/overloadGroup.kt b/core/testdata/format/website/overloadGroup.kt new file mode 100644 index 00000000..5bc98e3d --- /dev/null +++ b/core/testdata/format/website/overloadGroup.kt @@ -0,0 +1,15 @@ +/** + * @param spell The text of spell, often distributed on scrolls + * @return Spell ID for future casts + */ +fun magic(spell: String): Int { + +} + +/** + * @param spell Spell ID of previously casted spell + * @return Spell ID for future casts + */ +fun magic(spell: Int): Int { + +}
\ No newline at end of file |