blob: a69b33a5be15fbdd0d41375e731ca95612686f6d [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.
/// @author pagolubev
class C {
C.();
// ^
// [analyzer] unspecified
// [cfe] unspecified
}
main() {
new C();
}