repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2009-03-11 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
tests
/
test-350.cs
blob
1daf45a672cb943454702e7cd08aba1aa9191b94
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
static void
Main
() {}
16
}