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

cs1581.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4b8ef6c9e6f442eb348f1ddbb9955450f2263859 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Compiler options: -doc:dummy.xml -warnaserror -warn:1
using System;
/// <seealso cref="explicit operator intp (Test)"/>
public class Test
{
	/// operator.
	public static explicit operator int (Test t)
	{
		return 0;
	}
}