Skip to content

Commit ecb3adb

Browse files
committed
update baseline
1 parent 311ed52 commit ecb3adb

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

tests/baselines/reference/classStaticBlockUseBeforeDef3.errors.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,4 +47,7 @@ tests/cases/conformance/classes/classStaticBlock/classStaticBlockUseBeforeDef3.t
4747
static {
4848
u; // should be "BAR"
4949
}
50-
}
50+
}
51+
52+
u; // should be "BAR"
53+

tests/baselines/reference/classStaticBlockUseBeforeDef3.symbols

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,3 +72,7 @@ class CFA {
7272
>u : Symbol(u, Decl(classStaticBlockUseBeforeDef3.ts, 24, 3))
7373
}
7474
}
75+
76+
u; // should be "BAR"
77+
>u : Symbol(u, Decl(classStaticBlockUseBeforeDef3.ts, 24, 3))
78+

tests/baselines/reference/classStaticBlockUseBeforeDef3.types

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,10 @@ class CFA {
8080

8181
static {
8282
u; // should be "BAR"
83-
>u : "FOO" | "BAR"
83+
>u : "BAR"
8484
}
8585
}
86+
87+
u; // should be "BAR"
88+
>u : "BAR"
89+

0 commit comments

Comments
 (0)