blob: d5f9f8d82ee32f48f3eeed343e4718d0d00e7bf6 [file] [log] [blame]
// Copyright (c) 2011, 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 named factory constructor
* redirects to itself.
* @author ilya
*/
class F {
factory F.id() = F.id;
// ^^^^
// [analyzer] unspecified
// [cfe] unspecified
}
main() {
new F.id();
}