**** Merged from MCS ****
[mono-project.git] / mcs / errors / cs1667-2.cs
blob4c90da54ee951a1a9a1bc8747194cca26a13005a
1 // cs1667.cs: 'System.Obsolete' is not valid on property or event accessors. It is valid on 'class, struct, enum, constructor, method, property, indexer, field, event, interface, delegate' declarations only.
2 // Line: 14
4 class Test {
5 public static bool Error {
6 [System.Obsolete] set {
11 class MainClass {
12 public static void Main () {
13 Test.Error = false;