blob: d22fc00b6e84285ca571f9c82e0bfbec062d9f83 [file] [log] [blame]
// 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.
// @dart = 2.9
import "package:expect/expect.dart";
const a = 1;
main() {
Expect.equals(1, a);
Expect.equals(1, const A(a).a);
Expect.equals(1, const [const A(a)][0].a);
}
class A {
final a;
const A(this.a);
}