blob: 23eb22692eba3047fab98e8f0c2512d9d7530b5c [file] [log] [blame]
// Copyright (c) 2019, 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.
class B {
String? _foo = 'B._foo';
String get foo => _foo!;
}