OLD | NEW |
| (Empty) |
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | |
2 // for details. All rights reserved. Use of this source code is governed by a | |
3 // BSD-style license that can be found in the LICENSE file. | |
4 // | |
5 // Check proper canonicalization (fields must be canonicalized as well). | |
6 | |
7 import "package:expect/expect.dart"; | |
8 | |
9 main() { | |
10 Expect.isFalse(identical(new Duration(days: 1), new Duration(days: 1))); | |
11 Expect.isTrue(identical(const Duration(days: 2), const Duration(days: 2))); | |
12 Expect.isTrue(identical(const B(3.0), const B(3.0))); | |
13 Expect.isTrue(identical(const F(main), const F(main))); | |
14 } | |
15 | |
16 class A { | |
17 final a; | |
18 const A(v) : a = v + 3.4; | |
19 } | |
20 | |
21 class B extends A { | |
22 final b; | |
23 const B(v) | |
24 : super(v), | |
25 b = v + 1.0; | |
26 } | |
27 | |
28 class F { | |
29 final f; | |
30 const F(v) : f = v; | |
31 } | |
OLD | NEW |