dart-sdk/tests/language/function/type_parameter_bound_object_test.dart
Robert Nystrom 5ed88471ec Migrate language_2/function to NNBD.
Change-Id: I0726fa252736a83a2d80345d71c05aacf8ed0649
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/142941
Commit-Queue: Bob Nystrom <rnystrom@google.com>
Auto-Submit: Bob Nystrom <rnystrom@google.com>
Reviewed-by: Leaf Petersen <leafp@google.com>
2020-04-25 01:53:20 +00:00

18 lines
518 B
Dart

// Copyright (c) 2018, 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.
Q hest<Q>(dynamic x) {
if (x is Q) return x;
throw "unreached";
}
Q Function<Q>(dynamic) pony = hest;
Q Function<Q extends Object?>(dynamic) zebra = hest;
main() {
hest(42).fisk(); //# 01: runtime error
pony(42).fisk(); //# 02: runtime error
zebra(42).fisk(); //# 03: compile-time error
}