blob: 42fe145a6e403dd20a7e45493806284b2cbb8939 [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:
* identier (`.' identier)? formalParameterList ;
* @description Checks that constructor declaration without a formal parameter list
* produces a compile-time error.
* @compile-error
* @author pagolubev
* @reviewer iefremov
* @reviewer rodionov
*/
class C {
C;
}
main() {
try {
var c = new C();
} catch (x){}
}