blob: 1f3d3683602418c3d38c1d475827b0e614286461 [file] [log] [blame]
// Copyright (c) 2019, 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.
/// @assertion Any self reference in a type alias, either directly or recursively
/// via another type declaration, is a compile-time error
/// @description Checks that any self reference in a type alias is a compile-time
/// error.
/// @author sgrekhov@unipro.ru
class A implements CAlias {}
// ^
// [analyzer] unspecified
// [cfe] unspecified
class C extends A {}
// ^
// [analyzer] unspecified
// [cfe] unspecified
typedef CAlias = C;
main() {
}