blob: cffb7e9c8476641866a8a59227f667409d92752c [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 it is a compile-time error if the getter identifier
/// is missing.
/// @author iefremov
class C {
get => null;
//^^^
// [analyzer] unspecified
// [cfe] unspecified
}
main() {
new C();
}