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: fd709ab6167252ac0dbcbdaf0d95be723bbc37f6 (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;

interface IFoo {
}

public interface IBar : IFoo {
}

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