blob: df38c59f1327a571b3ea1b75a5f3d2d6b1baa6cf [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
* constantConstructorSignature:
* const qualified formalParameterList
* ;
* @description Checks that it is a compile-time error when a constant default
* constructor is declared as abstract.
* @author rodionov
*/
class C {
const abstract C();
// ^^^^^^^^
// [analyzer] unspecified
// [cfe] unspecified
}
main() {
const C();
}