[unit-tests] Fix Makefile.am when Mono is compiled with LLVM
[mono-project.git] / mcs / errors / cs0629.cs
blobb41893ff2694ca71b1064eb454759ea08fdb8514
1 // CS0629: 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) {}