(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / errors / cs0111-11.cs
blob00f4ae5ff0d3dd60af471e534c65b34cae7492a9
1 // cs111.cs : Class `Blah' already contains a definition with the same return value and parameter types for method 'I.M'
2 // Line : 12
4 public interface I
6 void M ();
9 public class Blah: I
11 void I.M () {}
12 void I.M () {}