diff options
Diffstat (limited to 'cli/tests/testdata/inspector/foo.ts')
-rw-r--r-- | cli/tests/testdata/inspector/foo.ts | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/cli/tests/testdata/inspector/foo.ts b/cli/tests/testdata/inspector/foo.ts deleted file mode 100644 index c0735926f..000000000 --- a/cli/tests/testdata/inspector/foo.ts +++ /dev/null @@ -1,10 +0,0 @@ -class Foo { - hello(): string { - return "hello"; - } -} - -export function foo(): string { - const f = new Foo(); - return f.hello(); -} |