blob: 1c2e74644f0df242f78de5fee1f4f871bdc0ff84 [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
* getterSignature:
* type? get identifier
* ;
* @description Checks that a compile-time error is produced
* when a getter declaration includes a non-empty formal parameter list.
* @compile-error
* @author kaigorodov
* @reviewer rodionov
*/
class C {
get getter([var value = null]) { throw new C(); }
}
main() {
try {
var x = new C().getter;
} catch (e) {}
}