1/*
2 * Copyright (c) 2022 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
16
17enum s1 {
18    a = "str",
19    b = "str" + "str"
20}
21
22enum s2 {
23    a = "str",
24    c = a,
25}
26
27enum s2_1 {
28    a = s1.a,
29    b = a+s2.a,
30    c = s2_1.b+"str"
31}
32
33enum s3 {
34    a = ("str"),
35    b = (("str") + ("str"+"str")),
36    c = "str" + ("str") + s2_1.b
37}
38
39print(s2.c);
40print(s2["str"]);
41
42print(s2_1.a);
43print(s2_1.b);
44print(s2_1.c);
45print(s2_1["strstrstr"]);
46
47print(s3.b);
48print(s3.c);
49print(s3["strstrstr"]);