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

cs1614.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a62d1486565afaa39d7d3478345557dd6079e4a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
// cs1614.cs: 'A': is ambiguous;  use either '@A' or 'AAttribute'
// Line: 6
// Bug #56456

using System;
public class A : Attribute {
	[A]
	public static void Main() {
	}
}
public class AAttribute : Attribute {}