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

cs0061.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6866cc38a33e23647488536cae224082eef3173c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// cs0061.cs: Inconsistent accessibility. Base interface less accessible than interface.
// Line: 9

using System;

protected interface IFoo {
}

public interface IBar : IFoo {
}

class ErrorCS0061 {
	public static void Main () {
	}
}