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

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

[AttributeUsage (AttributeTargets.All)]
public class A: Attribute {

	public A (object o) {
	}
}
  
[A ((object)AttributeTargets.All)]
public class Test {
        static public void Main() {
	}
}