summaryrefslogtreecommitdiff
path: root/cli/bench/fixtures/code_lens.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cli/bench/fixtures/code_lens.ts')
-rw-r--r--cli/bench/fixtures/code_lens.ts56
1 files changed, 0 insertions, 56 deletions
diff --git a/cli/bench/fixtures/code_lens.ts b/cli/bench/fixtures/code_lens.ts
deleted file mode 100644
index 0822e31c4..000000000
--- a/cli/bench/fixtures/code_lens.ts
+++ /dev/null
@@ -1,56 +0,0 @@
-interface A {
- a: string;
-}
-
-interface B {
- b: string;
-}
-
-interface C {
- c: string;
-}
-
-interface D {
- d: string;
-}
-
-interface E {
- e: string;
-}
-
-interface F {
- f: string;
-}
-
-interface G {
- g: string;
-}
-
-interface H {
- h: string;
-}
-
-class AB implements A, B {
- a = "a";
- b = "b";
-}
-
-class CD implements C, D {
- c = "c";
- d = "d";
-}
-
-class EF implements E, F {
- e = "e";
- f = "f";
-}
-
-class GH implements G, H {
- g = "g";
- h = "h";
-}
-
-new AB().a;
-new CD().c;
-new EF().e;
-new GH().g;