OLD | NEW |
1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2016, 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 // Dart test for a function type test that cannot be eliminated at compile time. | 4 // Dart test for a function type test that cannot be eliminated at compile time. |
5 | 5 |
6 import "package:expect/expect.dart"; | 6 import "package:expect/expect.dart"; |
7 | 7 |
8 typedef int H(Function | 8 typedef int H( |
| 9 Function |
9 Function // //# 00: compile-time error | 10 Function // //# 00: compile-time error |
10 x); | 11 x); |
11 | 12 |
12 main() { | 13 main() { |
13 bool b = true; | 14 bool b = true; |
14 Expect.isFalse(b is H); | 15 Expect.isFalse(b is H); |
15 } | 16 } |
OLD | NEW |