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-348.cs
blob
91424bd702835e7d329d277f0a88c911e7131c7e
1
using
System
;
2
3
public sealed class
BoundAttribute
:
System
.
Attribute
4
{
5
public
BoundAttribute
(
double
min
,
int
i
)
6
{
7
}
8
}
9
10
class
C
11
{
12
[
BoundAttribute
(
0
,
0
)]
13
int
i
;
14
15
[
BoundAttribute
(
3
,
3
)]
16
double
d
;
17
18
public static void
Main
()
19
{
20
}
21
}