diff options
Diffstat (limited to 'cli/tests/testdata/test/doc.ts')
-rw-r--r-- | cli/tests/testdata/test/doc.ts | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/cli/tests/testdata/test/doc.ts b/cli/tests/testdata/test/doc.ts deleted file mode 100644 index 519479fc5..000000000 --- a/cli/tests/testdata/test/doc.ts +++ /dev/null @@ -1,38 +0,0 @@ -/** - * ``` - * import * as doc from "./doc.ts"; - * ``` - * - * ```js - * import * as doc from "./doc.ts"; - * ``` - * - * ```jsx - * import * as doc from "./doc.ts"; - * ``` - * - * ```ts - * import * as doc from "./doc.ts"; - * ``` - * - * ```tsx - * import * as doc from "./doc.ts"; - * ``` - * - * ```text - * import * as doc from "./doc.ts"; - * ``` - * - * @module doc - */ - -/** - * ```ts - * import { check } from "./doc.ts"; - * - * console.assert(check() == 42); - * ``` - */ -export function check(): string { - return "check"; -} |