blob: c1420c5e9fe0fbc5d9c533d893dd50b63b48b6e8 [file] [log] [blame]
/*
* Copyright (c) 2020, 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.
*/
// @dart=2.6
library opted_out_lib;
import 'opted_in_lib.dart';
class T {}
class LA<X> {}
class LB<X> implements LA<X>{}
class LC<X> implements A<X> {}
class LC2<X> implements LC<X>{}
class LE<X> implements B<X> {}
class LF<X> implements B2<X> {}
class LD implements LA<dynamic>{}
class LV implements LA<void>{}
class LAO implements A<Object> {}
class LFO extends FO<Object> {}
class LCG<X> implements A<G<X>> {}
class LCG2<X> implements LCG<X>{}
class LEG<X> implements B<G<X>> {}
class LDG implements LA<G<dynamic>>{}
class LVG implements LA<G<void>>{}