blob: 501525956d1dd9c5a85b46117aae3a1951ed6ddd [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.
* @compile-error
* @author pagolubev
*/
class C {
C;
}
main() {
new C();
}