blob: 0181359e96309930a3ad7b476aabf4af8f75d5e2 [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 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 error to declare more than one
* entity with the same name in the same scope.
* @compile-error
* @author kaigorodov
*/
class C {
void foo() {}
static set foo(String s) {}
}
main() {
C.foo = "foo";
}