blob: 8c61fc8498cc24473e5a4a1c96234234b97dec31 [file] [log] [blame]
// Copyright (c) 2016, 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.
/**
* @assertionString variableName
* read-only
* @description Checks that this property returns name of the variable that
* caused this error
* @Issue 42470
* @author sgrekhov@unipro.ru
*/
import "../../../Utils/expect.dart";
class C {
static var x = throw CyclicInitializationError("x");
}
main() {
try {
C.x;
} on CyclicInitializationError catch (e) {
Expect.equals("x", e.variableName);
}
}