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
2010-06-21 Atsushi Enomoto <atsushi@ximian.com>
[mcs.git]
/
tests
/
gtest-exmethod-02.cs
blob
bb0733b4c4b8ef08dcc1ea421196fe687de2694b
1
// Compiler options: -r:gtest-exmethod-02-lib.dll -noconfig
2
3
using
System
;
4
5
public class
M
6
{
7
public static void
Main
()
8
{
9
"foo"
.
Test_1
();
10
}
11
}
12
13
namespace
N
14
{
15
public class
M
16
{
17
public static void
Test2
()
18
{
19
"foo"
.
Test_1
();
20
}
21
}
22
}