OLD | NEW |
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 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. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
| 5 import "package:expect/expect.dart"; |
| 6 |
5 class A { | 7 class A { |
6 Map a; | 8 Map a; |
7 Comparator b; | 9 Comparator b; |
8 // This code exhibited a bug in dart2js checked mode, where the type | 10 // This code exhibited a bug in dart2js checked mode, where the type |
9 // of [a] was inferred to be [Comparator] or null; | 11 // of [a] was inferred to be [Comparator] or null; |
10 A() : b = null, a = null; | 12 A() : b = null, a = null; |
11 } | 13 } |
12 | 14 |
13 main() { | 15 main() { |
14 Expect.throws(bar); | 16 Expect.throws(bar); |
15 } | 17 } |
16 | 18 |
17 bar() { | 19 bar() { |
18 // We would create a typed selector for the call to foo, where the | 20 // We would create a typed selector for the call to foo, where the |
19 // receiver type is a typedef. Some code in the dart2js backend were | 21 // receiver type is a typedef. Some code in the dart2js backend were |
20 // not dealing correctly with typedefs and lead the compiler to | 22 // not dealing correctly with typedefs and lead the compiler to |
21 // crash. | 23 // crash. |
22 new A().a.foo(); | 24 new A().a.foo(); |
23 } | 25 } |
OLD | NEW |