Files
sdk/tests/language_2/function_propagation_test.dart
T
Vijay Menon fad85a6bfa Broken test fixes
These tests break on all backends.  It looks like the original intent was to run to completion.

Change-Id: I895638c522285f280cbb608c82a8a496bfd11d72
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/98302
Commit-Queue: Vijay Menon <vsm@google.com>
Reviewed-by: Bob Nystrom <rnystrom@google.com>
Reviewed-by: Lasse R.H. Nielsen <lrn@google.com>
2019-04-03 13:12:23 +00:00

24 lines
497 B
Dart

// Copyright (c) 2014, 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";
class A {
int call(String str) => 499;
}
typedef int F(String str);
main() {
var a = new A();
Expect.type<A>(a);
Expect.notType<F>(a);
Function a3 = new A();
Expect.notType<A>(a3);
F a4 = new A();
Expect.notType<A>(a4);
}