blob: 183214a9543a418feac5f50f0e8e7b6e31b9d380 [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 if an arbitrary instance getter specifies
* a single formal parameter.
* @compile-error
* @author vasya
* @reviewer iefremov
* @reviewer rodionov
*/
class C {
get getter(var value) { throw new C(); }
}
main() {
try {
var x = new C().getter;
} catch (e) {}
}