blob: 99143d4cb07d6cfd1d1074c3948c77bf9d2774e7 [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.
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);
}