/*
 * Copyright (c) 2024 Huawei Device Co., Ltd.
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
import p from 'assert';
import q from './export_api_01';
import * as r from './export_api_01';
import {} from './export_api_01';
import { var1 } from './export_api_01';
import { b, var3, } from './export_api_01';
import { default as s } from './export_api_01';
import t, * as u from './export_api_01';
import v, { reduceFunc, } from './export_api_01';
p(q(2, 3) === 3);
p(r.var1 === 1);
p(var1 === 1);
p(b === 2);
p(var3 === 3);
p(s(3, 4) === 4);
p(t(7, 8) === 8);
p(u.var3 === 3);
p(v(3, 4) === 4);
p(reduceFunc(5, 4) === 1);
// import ""; TypeError: The argument 'id' must be a non-empty string. Received ''
import './export_api_01';
import { moduleAlias } from './export_api_02';
import * as w from './export_api_02';
p(moduleAlias.addFunc(3, 4) === 7);
p(w.moduleAlias.reduceFunc(5, 4) === 1);
export { moduleAlias } from './export_api_02';
import { moduleAlias_2 } from './export_api_02';
import * as x from './export_api_02';
p(moduleAlias_2.addFunc(3, 4) === 7);
p(x.moduleAlias_2.reduceFunc(5, 4) === 1);
