Skip to content

Commit 13e585c

Browse files
committed
Apply review suggestions.
1 parent 034f610 commit 13e585c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

TypeSystem/flow-analysis/reachability_A02_t05.dart

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
/// @author [email protected]
1111
1212
void test1() {
13-
late int i;
13+
int i;
1414
[
1515
if (true)
1616
i = 42
@@ -19,7 +19,7 @@ void test1() {
1919
}
2020

2121
void test2() {
22-
late int i;
22+
int i;
2323
<int>{
2424
if (true)
2525
i = 42
@@ -28,7 +28,7 @@ void test2() {
2828
}
2929

3030
void test3() {
31-
late int i;
31+
int i;
3232
<int, int>{
3333
if (true)
3434
1: i = 42

0 commit comments

Comments
 (0)