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-07-16 Jb Evain <jbevain@novell.com>
[mcs.git]
/
tests
/
test-153.cs
blob
29419075afb157d05dc422c3294f15e15ddb0edd
1
#define DEBUG
2
using
System
;
3
using
System
.
Text
;
4
using
System
.
Diagnostics
;
5
6
class
Z
7
{
8
static public void
Test2
(
string
message
,
params object
[]
args
)
9
{
10
}
11
12
static public void
Test
(
string
message
,
params object
[]
args
)
13
{
14
Test2
(
message
,
args
);
15
}
16
17
static int
Main
()
18
{
19
Test
(
"TEST"
);
20
Test
(
"Foo"
,
8
);
21
Test
(
"Foo"
,
8
,
9
,
"Hello"
);
22
return
0
;
23
}
24
}