Facilitate the merge
[mono.git] / mcs / errors / cs0619-47.cs
1 // cs0619-47.cs: `A.Field' is obsolete: `!!!'
2 // Line: 11
3
4 class A: System.Attribute
5 {\r
6         [System.Obsolete("!!!", true)]\r
7         public int Field;
8 }
9 \r
10 class Obsolete {\r
11         [A(Field=2)]\r
12         public int Foo;
13 }