Files
sdk/pkg/front_end/testcases/inference/recursive_generic_function.dart.strong.expect
T
Johnni Winther 323d5bf05e [cfe] Run all but nnbd_mixed tests in strong mode
Change-Id: I96947e3b2790067add9b956904af375a222bb640
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/276081
Reviewed-by: Jens Johansen <jensj@google.com>
Commit-Queue: Johnni Winther <johnniwinther@google.com>
2022-12-19 12:44:47 +00:00

12 lines
638 B
Plaintext

library test /*isNonNullableByDefault*/;
import self as self;
import "dart:core" as core;
static method _mergeSort<T extends core::Object? = dynamic>((self::_mergeSort::T%) → self::_mergeSort::T% list, (self::_mergeSort::T%, self::_mergeSort::T%) → core::int compare, (self::_mergeSort::T%) → self::_mergeSort::T% target) → void {
self::_mergeSort<self::_mergeSort::T%>(list, compare, target);
self::_mergeSort<self::_mergeSort::T%>(list, compare, list);
self::_mergeSort<self::_mergeSort::T%>(target, compare, target);
self::_mergeSort<self::_mergeSort::T%>(target, compare, list);
}
static method main() → dynamic {}