Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0102-14.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0b4d2b5e2b01b8d18270ffe7570e78a5b8c51af5 (plain)
1
2
3
4
5
6
7
// cs0102.cs: The class 'T' already contains a definition for 'A'
// Line: 6

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