dart-sdk/tests/language_2/function_subtype_setter0_test.dart
William Hesse b3e7f6d299 Recommit "migrate function type tests""
This reverts commit ba09eb787c, which was
a revert of ca6bec3414.
New status lines have been added to tests/languge_2/language_2_dart.js.status.

Bug:
Change-Id: I9e5b344d67df1fb00d5a51078a3d2b6113223a3e
Reviewed-on: https://dart-review.googlesource.com/7800
Reviewed-by: Bob Nystrom <rnystrom@google.com>
2017-09-22 17:52:27 +00:00

32 lines
580 B
Dart

// Copyright (c) 2013, 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.
// Dart test program for constructors and initializers.
// Check function subtyping for implicit setters.
import 'package:expect/expect.dart';
typedef void Foo();
class A<T> {}
class C {
Foo foo;
A<int> bar;
}
class D {
Foo foo;
A<int> bar;
}
test(c) {
Expect.throwsTypeError(() => c.foo = 1);
}
void main() {
test(new C());
test(new D());
}