summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0111-5.cs
blob: 852808d49e45a8e21aaeab57607fe287b989c993 (plain)
1
2
3
4
5
6
7
// CS0111: A member `ISample.Blah()' is already defined. Rename this member or use different parameter types
// Line: 6

public interface ISample {
        int Blah ();
        int Blah ();
}