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

cs0060.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0e571b72987a538823930030545485c8ac23e822 (plain)
1
2
3
4
5
6
7
// cs0060.cs: Incosistent accessability between X and Y.X
// Line: 6
class X {
}

public class Y : X {
}