summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/fmt/regular/formatted3.markdown
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/testdata/fmt/regular/formatted3.markdown')
-rw-r--r--cli/tests/testdata/fmt/regular/formatted3.markdown17
1 files changed, 0 insertions, 17 deletions
diff --git a/cli/tests/testdata/fmt/regular/formatted3.markdown b/cli/tests/testdata/fmt/regular/formatted3.markdown
deleted file mode 100644
index e6e616584..000000000
--- a/cli/tests/testdata/fmt/regular/formatted3.markdown
+++ /dev/null
@@ -1,17 +0,0 @@
-# Hello
-
-```js
-function foo() {
- return 42;
-}
-
-foo();
-```
-
-```ts
-function bar(): number {
- return 42;
-}
-
-bar();
-```