/*
 * 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 assert from "assert";
let q1 = 1;
class s1 {
    constructor(public u1: number, public v1: string) {
        u1 = u1 + 1;
        class w1 {
            constructor(public u1: number, public z1: string) {
                u1 = u1 + 2;
                v1 = v1 + "2";
                z1 = "4";
                this.u1 = u1 + 1;
            }
        }
        let x1 = new w1(1, "3");
        assert(x1.u1 === 4);
        assert(x1.z1 === "3");
        this.u1 = u1;
        this.v1 = v1;
    }
}
let t1 = new s1(1, "2");
assert(t1.u1 === 2);
assert(t1.v1 === "22");
assert(q1 === 1);
