2010-06-04 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0629.cs
blob3e3b123b707e78d1cd1160575ed4fe41cd744602
1 // cs0629.cs: Conditional member `DerivedClass.Show(int)' cannot implement interface member `IFace.Show(int)'
2 // Line: 12
4 interface IFace
6 void Show (int arg);
9 class DerivedClass: IFace
11 [System.Diagnostics.Conditional("DEBUG")]
12 public void Show (int arg) {}