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

test-900.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b0e4b0a3da638daa06b19abe1f9495187072222c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using System;

class D
{
	public static implicit operator D (Action d)
	{
		return new D ();
	}
}

class Program
{
	static void Main()
	{
		D d = (D) Main;
	}
}