| OLD | NEW |
| (Empty) |
| 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 | |
| 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. | |
| 5 | |
| 6 import "package:expect/expect.dart"; | |
| 7 | |
| 8 class A { | |
| 9 } | |
| 10 | |
| 11 typedef F<T> = Function<S>(List<S> list, Function<A>(A), T); | |
| 12 | |
| 13 foo(List<dynamic> x, bar(String y), int z) {} | |
| 14 foo2(List<int> x, bar(String y), int z) {} | |
| 15 | |
| 16 main() { | |
| 17 Expect.isTrue(foo is F); | |
| 18 Expect.isTrue(foo is F<int>); | |
| 19 Expect.isFalse(foo is F<bool>); | |
| 20 | |
| 21 Expect.isTrue(foo2 is F); | |
| 22 Expect.isTrue(foo2 is F<int>); | |
| 23 Expect.isFalse(foo2 is F<bool>); | |
| 24 } | |
| OLD | NEW |