blob: bc02e0aafd712ce4fb2b58164aa312e92a4e01e8 [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 k is prefixed with the const
/// modifier but k' is not a constant constructor.
/// @description Checks that it is a compile-error if const redirecting
/// factory constructor redirects to non-const redirecting factory constructor
/// @author ilya
class F1 {
const factory F1() = F2;
// ^^
// [analyzer] unspecified
// [cfe] unspecified
}
class F2 {
factory F2() = C;
}
class C implements F2 {
}
main() {
new F1();
}