diff options
Diffstat (limited to 'core/testdata/format/tokensInHeaders.kt')
-rw-r--r-- | core/testdata/format/tokensInHeaders.kt | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/core/testdata/format/tokensInHeaders.kt b/core/testdata/format/tokensInHeaders.kt new file mode 100644 index 00000000..df62b024 --- /dev/null +++ b/core/testdata/format/tokensInHeaders.kt @@ -0,0 +1,27 @@ +/** + * Why did the token cross the road? + * + * # Because it was Beer o'clock @ [The.bar] + * + * ## But __waz *\[sic\]* [it](isitbeeroclock.com)__ really? + * + * ### [The.bar] has? [The.foo]est drinks ever! + * + * #### _[The.kotlinz] is [The.bestests], [Bar.none]_ + * + * ##### So many lame code "puns" (in) [The.house] + * + * ###### End of the?? [Bar.line]! - we need to go back! + */ +class The { + object Bar { + fun none() {} + } + + fun bar() {} + fun foo() {} + fun bestests() {} + fun kotlinz() {} + fun house() {} + fun line() {} +} |