blob: dd462b7098a611a8e6e8e840b01ad5c1590e8ee9 [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 It is a compile time error if a class declares a static setter
* named v= and also has a non-static member named v.
* @description Checks that it is a compile time error if a class declares a
* static setter named v= and also has a non-static field named v.
* @compile-error
* @author kaigorodov
*/
class C {
String foo = "Lily was here";
static set foo(String s) {}
}
main() {
C.foo = "foo";
}