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

cs0658.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e4da1e82b720285b61db6204b2a97960f8591d2c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// cs0658.cs : Invalid attribute location "blah"
// Line : 8

public class MyClass {

	delegate int MyDelegate (int i, int j);
	
	[blah:Help("blah")]
	public static MyClass operator/ (MyClass i, MyClass j)
	{
	
	}

	public static implicit operator MyClass (Object o)
	{

	}
}