[mcs] C#7 out variable declaration
[mono.git] / mcs / errors / cs0629.cs
1 // CS0629: Conditional member `DerivedClass.Show(int)' cannot implement interface member `IFace.Show(int)'
2 // Line: 12
3
4 interface IFace
5 {
6         void Show (int arg);
7 }
8
9 class DerivedClass: IFace
10 {
11         [System.Diagnostics.Conditional("DEBUG")]
12         public void Show (int arg) {}
13 }