blob: 88a2e36861c2dfca8bad98f00cfd17dc615d24de [file] [log] [blame]
// Copyright (c) 2021, 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 C {
factory C() => D();
}
class D implements C {}
typedef T<X extends num> = C;