blob: 97e6d0471fc56c0239d05b0c727ad0dc3ff72684 [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 initializer
* list is empty (a lone colon).
* @compile-error
* @author iefremov
* @reviewer rodionov
*/
class C {
C() : {}
}
main() {
new C();
}