blob: bcc3b3fab7ba2bbefff887449779c5e50596db72 [file] [log] [blame]
// Copyright (c) 2017, 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=2.9
/*@testedFeatures=inference*/
library test;
abstract class C<E> {
void sort([int compare(E a, E b)]) {
/*@ typeArgs=C::E* */ sort2(
this, compare /*@target=Object.==*/ ?? _compareAny);
}
static int _compareAny(a, b) {
throw 'unimplemented';
}
static void sort2<E>(C<E> a, int compare(E a, E b)) {
throw 'unimplemented';
}
}
main() {}