blob: 6fbd051cb950a3a03caaa0a93390952c8fb4d206 [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.
// dart2jsOptions=--enable-experiment=constant-update-2018
// Regression test for CFE constant evaluation. The evaluation of [Class9.field]
// assumed that its initializer did not hold an unevaluated constant.
import 'package:expect/expect.dart';
const dynamic zero_ = const bool.fromEnvironment("x") ? null : 0;
class Class9 {
final field = zero_;
const Class9();
}
const c0 = const bool.fromEnvironment("x") ? null : const Class9();
main() {
Expect.equals(0, c0.field);
}