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
Take stars out of types where they make more sense.
[mono-project.git]
/
mcs
/
tests
/
test-542.cs
blob
6acf8e3df3a36c5dcb1068e6caadb2db75b29d76
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
public static void
Main
() {
26
}
27
}