2007-10-17 Geoff Norton <gnorton@novell.com>
[mono.git] / mcs / errors / cs0111-5.cs
1 // cs0111-5.cs: `ISample.Blah()' is already defined. Rename this member or use different parameter types
2 // Line: 6
3
4 public interface ISample {
5         int Blah ();
6         int Blah ();
7 }