/*
 * 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 g = 'hello';
let h = { g: g };
h.g;
assert(g === 'hello');
assert(h.g === 'hello');
let i = 'hello';
let j = { name: g, i: g };
j.name;
assert(i === 'hello');
assert(j.name === 'hello');
assert(j.i === 'hello');
let k = 'hello';
let l = { k: k };
l.k;
assert(k === 'hello');
assert(l.k === 'hello');
let m = 'hello';
let o = { m: m };
o.m;
assert(m === 'hello');
assert(o.m === 'hello');
let p = 'hello';
let q = { p: p };
q.p;
assert(p === 'hello');
assert(q.p === 'hello');
