blob: 45efd62ce429ade6fa11765c704e78bf7cab5e98 [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 constructorSignature:
/// identifier (‘.’ identifier)? formalParameterList
/// ;
/// @description Checks that constructor declaration without a formal parameter
/// list produces a compile-time error.
/// @author pagolubev
class C {
C;
//^
// [analyzer] unspecified
// [cfe] unspecified
}
main() {
new C();
}