summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0102-14.cs
blob: 6478f7540b43e7a464a72d905425ff250b1be7f9 (plain)
1
2
3
4
5
6
7
// CS0102: The type `T' already contains a definition for `A'
// Line: 6

class T{
        public string A { get { return "a"; } }
        public string A (int a) { return "a"; }
}