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: 5f9a364d2f1a30ee557560bea26fadc3757ac4ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// cs0061.cs: Inconsistent accessibility: base interface `IFoo' is less accessible than interface `IBar'
// Line: 9

using System;

interface IFoo {
}

public interface IBar : IFoo {
}

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