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

test-569.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 383052c430e77b9aa7a28356f0461a7bc6cf7867 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using System;

[AttributeUsage(AttributeTargets.All, AllowMultiple=true)]
public class MyAttribute : Attribute {}

public class SubAttribute : MyAttribute {}

public class test {
	[SubAttribute]
	[SubAttribute]
	public void method() {}

	public static void Main (){}
}