• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1/*
2 * Copyright (c) 2024 Huawei Device Co., Ltd.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
16import { A, A1, A as A2, B, B1, B as B2, C, C1, C as C2 } from '../ets/test4';
17import { I, J } from '../ets/test4';
18
19interface T {}
20
21class D1 extends A {}
22class D2 extends A1 {}
23class D3 extends A2 {}
24class D4 extends B {}
25class D5 extends B1 {}
26class D6 extends B2 {}
27class D7 extends C {}
28class DerivedFromC1 extends C1 {}
29class DerivedFromC2 extends C2 {}
30
31interface I1 extends I {}
32interface J1 extends J {}
33interface K extends I, J, T {}
34
35export let t = 123;
36