Copied remotely
[mono.git] / mcs / errors / cs0629.cs
1 // cs0629.cs: Conditional member 'DerivedClass.Show(int)' cannot implement interface member 'IFace.Show(int)'\r// Line: 12\r
2 interface IFace
3 {\r        void Show (int arg);\r}\r
4 class DerivedClass: IFace
5 {\r        [System.Diagnostics.Conditional("DEBUG")]
6         public void Show (int arg) {}\r}\r
7 \r