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

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

public class A
{
    [AttributeUsage(AttributeTargets.Class | AttributeTargets.Property)]
    public class BAttribute : Attribute
    {
    }
}


[A.B()]
public class C
{
	public static void Main () {}
}