blob: 68d706b71fdaa29238365d11a61038ca366f9a61 [file] [log] [blame]
// Copyright (c) 2019, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
closure_read() {
late int v1, v2;
v1 = 0;
[0, 1, 2].forEach((t) {
v1;
/*unassigned*/ v2;
});
}
closure_write() {
late int v;
[0, 1, 2].forEach((t) {
v = t;
});
/*unassigned*/ v;
}
localFunction_local() {
late int v;
v = 0;
void f() {
late int v;
/*unassigned*/ v;
}
}
localFunction_local2() {
late int v1;
v1 = 0;
void f() {
late int v2, v3;
v2 = 0;
v1;
v2;
/*unassigned*/ v3;
}
}
localFunction_read() {
late int v1, v2, v3;
v1 = 0;
void f() {
v1;
/*unassigned*/ v2;
}
v2 = 0;
}
localFunction_write() {
late int v;
void f() {
v = 0;
}
/*unassigned*/ v;
}