blob: dab5933b2fa71132f7e2961ba025002f6ab4acb2 [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 there's just the right-side expression
* in place of a field initializer.
* @compile-error
* @author rodionov
* @reviewer kaigorodov
*/
class C {
C() : 2+2 {}
var x;
}
main() {
try {
new C();
} catch (x) {}
}