blob: de582dd5e2c1140a1e4793de043e36d204d6110c [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 static getter
* declaration includes an empty formal parameter list.
* @compile-error
* @author kaigorodov
* @reviewer rodionov
*/
class C {
static get getter() {throw new C();}
}
main() {
try {
var x = C.getter;
} on C catch(ok) {}
}