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

cs1964.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f92b13995576b43744bf416d47e50ea5fa301f05 (plain)
1
2
3
4
5
6
7
8
9
// CS1964: User-defined conversion `C.implicit operator C(dynamic)' cannot convert to or from the dynamic type
// Line: 6

class C
{
	public static implicit operator C (dynamic d)
	{
	}
}