Updated project.
[mono.git] / mcs / errors / cs0111-11.cs
1 // cs111.cs : Class `Blah' already contains a definition with the same return value and parameter types for method 'I.M'
2 // Line : 12
3
4 public interface I
5 {
6     void M ();
7 }
8
9 public class Blah: I
10 {
11         void I.M () {}
12         void I.M () {}
13 }