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

cs0102-8.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 72fa143c96d2ac12337f88db6c17c5ea2b53017b (plain)
1
2
3
4
5
6
7
// cs0102-8.cs: The type `SampleClass' already contains a definition for `set_Item'
// Line: 6

public class SampleClass {
        protected const int set_Item = 3;
        const int set_Item = 5;
}