mirror of
https://github.com/swc-project/swc.git
synced 2024-12-01 09:52:57 +03:00
28 lines
455 B
JavaScript
28 lines
455 B
JavaScript
/** */
|
|
function first() {}
|
|
|
|
/** */
|
|
function second() {}
|
|
|
|
// the next comment must contain a single hard tab (\t) character
|
|
/** */
|
|
function third() {}
|
|
|
|
// the next comment must contain at least two hard tab (\t) characters
|
|
/** */
|
|
function fourth() {}
|
|
|
|
// the next comment must contain one newline (\n) character
|
|
/**
|
|
*/
|
|
function fifth() {}
|
|
|
|
// the next comment must contain multiple newline (\n) characters
|
|
/**
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*/
|
|
function sixth() {}
|