[mcs] Allow properties and indexers of by-ref values to be set without setter
[mono.git] / mcs / errors / cs0619-11.cs
1 // CS0619: `I' is obsolete: `Do not use it.'
2 // Line: 15
3
4 using System;
5
6 [Obsolete("Do not use it.", true)]
7 interface I
8 {
9 }
10
11 class A
12 {
13 }
14
15 class C: A, I
16 {
17 }