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

cs0553-2.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3fbf56655b3e29ca6e9eb7a98eaa92d5b5782e28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// CS0553: User-defined conversion `plj.aClass.implicit operator plj.aClass(object)' cannot convert to or from a base class
// Line: 10

using System;

namespace plj
{
	public abstract class aClass
	{
		public static implicit operator aClass(object o)
		{ 
			return null;
		}
	}
}