blob: bea0d5e74af50e8042cc1fa6c706ce87a421b8cb [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 omitting a named constructor's identifier results
* in a compile-time error.
* @compile-error
* @author pagolubev
*/
class C {
C.();
}
main() {
new C();
}