repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Move Enum and CorElementType to shared (dotnet/coreclr#23177)
[mono-project.git]
/
mcs
/
tests
/
test-350.cs
blob
88eb62de1be32c7f0108aeebe2fab113a2653818
1
using
System
;
2
3
public class
A
4
{
5
[
AttributeUsage
(
AttributeTargets
.
Class
|
AttributeTargets
.
Property
)]
6
public class
BAttribute
:
Attribute
7
{
8
}
9
}
10
11
12
[
A
.
B
()]
13
public class
C
14
{
15
public static void
Main
() {}
16
}