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-416.cs
blob
28f956d015ecd5cc56c1715d069a2e36108dade9
1
// Compiler options: -addmodule:test-416-mod.netmodule
2
3
using
n1
;
4
using
System
;
5
6
public class
ModTest
7
{
8
9
public static void
Main
(
string
[]
args
)
10
{
11
Adder a
=
new
Adder
();
12
Console
.
WriteLine
(
a
.
Add
(
2
,
3
));
13
}
14
15
}