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
Merge pull request #4202 from marek-safar/compression
[mono-project.git]
/
mcs
/
tests
/
test-819.cs
blob
df15e560121ac6741f4ce9fc960b0ca0a17c456a
1
using
System
;
2
3
public class
AAttribute
:
Attribute
4
{
5
[
AAttribute
(
1
)]
6
public class
BAttribute
:
AAttribute
7
{
8
public
BAttribute
()
9
:
base
()
10
{
11
}
12
13
public
BAttribute
(
int
a
)
14
:
base
(
a
)
15
{
16
}
17
}
18
19
public
AAttribute
()
20
{
21
}
22
23
protected
AAttribute
(
int
a
)
24
{
25
}
26
27
public static int
Main
()
28
{
29
typeof
(
BAttribute
).
GetCustomAttributes
(
true
);
30
return
0
;
31
}
32
}