blob: fa5cdd73d58eaa88ca30123482279f6562eb5b50 [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> = C;