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
cosmetic
[mcs.git]
/
tests
/
gtest-exmethod-02.cs
blob
a7987e538742e2de4a55ff6999fd867f4ef634ac
1
// Compiler options: -r:gtest-exmethod-02-lib.dll
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
}