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

cs0246.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dfa20eef8ac2acf17c858945ed39f0aff4c00c07 (plain)
1
2
3
4
5
6
7
8
9
// cs0246.cs: can not find type `B'
// Line: 4
interface A : B {
}

class X {
	static void Main () {
	}
}