blob: 48cb21ef4f5aea0d52bbe105764b0b8219a7d24f [file] [log] [blame]
// 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.
// Library declaring a getter `_f2`, to check that it doesn't prevent promotion
// of a field named `_f2` in `field_promotion_and_no_such_method.dart`.
class C {
int? get _f2 => 0;
}