blob: 7204101d5f7d8095a6c24a6ee8683be4523c1f22 [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 It is a compile-time error if a redirecting factory constructor
* redirects to itself, either directly or indirectly via a sequence of
* redirections.
* @description Checks that compile-error occurs when factory constructor
* redirects to itself. Test type alias
* @compile-error
* @author sgrekhov@unipro.ru
*/
// SharedOptions=--enable-experiment=nonfunction-type-aliases
class F {
factory F() = FAlias;
}
typedef FAlias = F;
main() {
new F();
}