Files
sdk/tests/language/variable/scope_variable_test.dart
Chloe Stefantsova 6e1ba9d773 [cfe] Error on variable use before declaration, not on declaration
Closes https://github.com/dart-lang/sdk/issues/53422

Change-Id: Ia3d138acf870533c88be2dd81cc4079176b2fec7
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/329101
Commit-Queue: Chloe Stefantsova <cstefantsova@google.com>
Reviewed-by: Johnni Winther <johnniwinther@google.com>
2023-10-03 10:51:15 +00:00

51 lines
1021 B
Dart

// Copyright (c) 2011, 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.
import "package:expect/expect.dart";
void testSimpleScope() {
{
var a = "Test";
int b = 1;
}
{
var c;
int? d;
Expect.isNull(c);
Expect.isNull(d);
}
}
void testShadowingScope() {
var a = "Test";
{
var a;
Expect.isNull(a);
a = "a";
Expect.equals(a, "a");
}
Expect.equals(a, "Test");
}
num testShadowingAfterUse() {
var a = 1;
{
var b = 2;
var c = a; // Use of 'a' prior to its shadow declaration below.
// ^
// [analyzer] COMPILE_TIME_ERROR.REFERENCED_BEFORE_DECLARATION
// [cfe] Local variable 'a' can't be referenced before it is declared.
var d = b + c;
// Shadow declaration of 'a'.
var a = 5;
return d + a;
}
}
main() {
testSimpleScope();
testShadowingScope();
testShadowingAfterUse();
}