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: 8b660c8c8e6779f027d35b5e774b0b442230f272 (plain)
1
2
3
4
5
6
7
8
9
10
11
// cs1614.cs: `A' is ambiguous between `A' and `AAttribute'. Use either `@A' or `AAttribute'
// Line: 6
// Bug #56456

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