27446b463e
+ use the inferred return type in error reporting when no return type is declared. This turned up in this particular case where we report an error between the returned value and the inferred return type. Closes #42546 Change-Id: I48da24047f2e92ca91a514dfcb43c2ba6f65ee46 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/153610 Reviewed-by: Erik Ernst <eernst@google.com> Commit-Queue: Johnni Winther <johnniwinther@google.com>
18 lines
538 B
Dart
18 lines
538 B
Dart
// Copyright (c) 2020, 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.
|
|
|
|
// Based on tests/language/unsorted/flatten_test/12
|
|
|
|
import 'dart:async';
|
|
|
|
class Divergent<T> implements Future<Divergent<Divergent<T>>> {
|
|
noSuchMethod(Invocation invocation) => super.noSuchMethod(invocation);
|
|
}
|
|
|
|
test() async {
|
|
Future<Divergent<Divergent<int>>> x = (() async => new Divergent<int>())();
|
|
}
|
|
|
|
main() {}
|