blob: 28afdbbe0c99cd25b7984d9bb0f8d5516400c682 [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;
}