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-10-20 Jb Evain <jbevain@novell.com>
[mcs.git]
/
tests
/
test-542.cs
blob
6b6c80eb4787d4017926ef7740ad965c6cf3f759
1
//
2
// See bug 78113
3
//
4
5
public struct
ARec
6
{
7
decimal
mVal
;
8
public
ARec
(
decimal
val
)
9
{
10
mVal
=
Round
(
val
,
1
);
11
}
12
13
decimal
Round
(
int
digits
)
14
{
15
return
Round
(
mVal
,
digits
);
16
}
17
18
static decimal
Round
(
decimal
val
,
int
digits
)
19
{
20
return
0
;
21
}
22
}
23
24
class
X
{
25
static void
Main
() {
26
}
27
}