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

test-425.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0488b397dcc3bbecb333467d8c239d42496871be (plain)
1
2
3
4
5
6
7
8
9
// Test for bug #57047
using System;
public class A : Attribute {
	[@A]
	public static void Main() {
	}
}
public class AAttribute : Attribute {}