2010-05-31 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0738.cs
bloba82effbc13b569f72e5784ff934ab150274e4782
1 // CS0738: `B' does not implement interface member `I.Test(int)' and the best implementing candidate `B.Test(int)' return type `int' does not match interface member return type `void'
2 // Line: 9
4 interface I
6 void Test (int a);
9 class B: I
11 public int Test (int a)
13 return a;