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

cs0056.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bdeb039581feac54f5fc92732c56ed6c17063e42 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// cs0056.cs: Incompatible accessibility. Operator return type is less accessible than operator.
// Line: 11

using System;

class ErrorCS0056 {
	public ErrorCS0056 () {}
}

public class Foo {
	public static implicit operator ErrorCS0056(Foo foo) {
		return new ErrorCS0056 ();
	}
	public static void Main () {
	}
}