diff options
Diffstat (limited to 'test/data/format')
-rw-r--r-- | test/data/format/parenthesis.html | 13 | ||||
-rw-r--r-- | test/data/format/parenthesis.kt | 4 |
2 files changed, 17 insertions, 0 deletions
diff --git a/test/data/format/parenthesis.html b/test/data/format/parenthesis.html new file mode 100644 index 00000000..9e739443 --- /dev/null +++ b/test/data/format/parenthesis.html @@ -0,0 +1,13 @@ +<HTML> +<HEAD> +<title>test / foo</title> +</HEAD> +<BODY> +<a href="out.html">test</a> / <a href="out.html"></a> / <a href="out.html">foo</a><br/> +<br/> +<h1>foo</h1> +<pre><code><span class="keyword">fun </span><span class="identifier">foo</span><span class="symbol">(</span><span class="symbol">)</span><span class="symbol">: </span><span class="identifier">Unit</span></code></pre><p>foo (bar)</p> +<br/> +<br/> +</BODY> +</HTML> diff --git a/test/data/format/parenthesis.kt b/test/data/format/parenthesis.kt new file mode 100644 index 00000000..b906f64a --- /dev/null +++ b/test/data/format/parenthesis.kt @@ -0,0 +1,4 @@ +/** + * foo (bar) + */ +fun foo() {} |