dart-sdk/tests/language/inference_update_2/do_not_promote_methods_test.dart
Lasse R.H. Nielsen 9d933d1281 Retire 3.3 experiments in the 3.4 release.
Tested: No new tests.
Change-Id: Idf19ce8b6743b221841e6cef6b2a80e8ab37860e
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/354260
Auto-Submit: Lasse Nielsen <lrn@google.com>
Reviewed-by: Johnni Winther <johnniwinther@google.com>
Reviewed-by: Nate Bosch <nbosch@google.com>
Reviewed-by: Daco Harkes <dacoharkes@google.com>
Commit-Queue: Lasse Nielsen <lrn@google.com>
2024-03-04 16:09:31 +00:00

27 lines
568 B
Dart

// Copyright (c) 2022, 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.
// Tests that field promotion logic does not try to promote method tearoffs.
import '../static_type_helper.dart';
class C {
num _f(int i) => 0;
}
class D extends C {
int _f(num i) => 0;
}
void test(C c) {
if (c._f is int Function(num)) {
var x = c._f;
x.expectStaticType<Exactly<num Function(int)>>();
}
}
main() {
test(D());
}