blob: 5bd96b79bd8840cfd1b1cbe90b5ed5abc64f6fd1 [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:
/// returnType? get identifier
/// ;
/// @description Checks that a compile-time error is produced when a getter
/// declaration includes a non-empty formal parameter list.
/// @author kaigorodov
class C {
get getter([var value = null]) { throw new C(); }
// ^
// [analyzer] unspecified
// [cfe] unspecified
}
main() {
new C().getter;
}