blob: 3f787f77b9dfd175973f0e4bc3e54c2eb91c5be3 [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
* initializers:
* ':' superCallOrFieldInitializer (', ' superCallOrFieldInitializer)*
* ;
* superCallOrFieldInitializer:
* super arguments | super '.' identifier arguments | fieldInitializer
* ;
* fieldInitializer:
* (this '.')? identifier '=' conditionalExpression cascadeSection*
* ;
* @description Checks that it is a compile-time error when the identifier in
* a named superconstructor call is empty.
* @compile-error
* @author iefremov
*/
class S {
}
class C extends S {
C() : super.() {}
}
main() {
new C();
}