blob: e6eb9ac9cbfdb2983964dec3a3d167b7ef872a99 [file] [log] [blame]
// Copyright (c) 2018, 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 It is a compile error if a class declares a static getter named
* v and also has a non-static setter named v =.
* @description Checks that a compile error is arisen if a class has an
* explicitly declared static getter and an explicitly declared instance
* setter with the same name.
* @compile-error
* @author ngl@unipro.ru
*/
class C {
int n = 0;
static get v => 5;
set v(int v1) {
n = v1;
}
}
main() {
C.v;
}