Bump NuGet.BuildTasks to get new updates and switch to `dev` branch (#5566)
[mono.git] / mcs / errors / cs0738.cs
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
3
4 interface I
5 {
6         void Test (int a);
7 }
8
9 class B: I
10 {
11         public int Test (int a)
12         {
13                 return a;
14         }
15 }