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

cs0552.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: db5bf790b7a8a75bcf0871420e75dc7d7486d8bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// cs0552.cs: User-defined conversion `NoIDispose.implicit operator System.IDisposable(NoIDispose)' cannot convert to or from an interface type
// Line: 12
//
using System;
using System.IO;

//
//
// Implicit conversion to an interface is not permitted
//
class NoIDispose {
	public static implicit operator IDisposable (NoIDispose a)
	{
		return a.x;
	}
}