blob: 272b9483f9ae63a11e0b21a1cdfffb5521e446fe [file] [log] [blame]
// Copyright (c) 2018, 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 I<T> {
T? get foo => _foo;
T? _foo = null;
}