blob: efae12a3ea9fe5de0c0a2bc650ebb18d0e976721 [file] [log] [blame]
// 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.
// Test that TypeErrors happen for sync* methods without creating iterator.
import 'package:expect/expect.dart';
class D<T> {
// Parametric covariance check is usually compiled into method.
Iterable<T> add(T n) sync* {
yield n;
}
}
main() {
D<num> d = new D<int>();
Expect.throwsTypeError(() => d.add(4.6));
}