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
[build] Fix warning (#4177)
[mono-project.git]
/
mcs
/
tests
/
test-static-using-11.cs
blob
25d19b88f7e36ffc381081dc60e04ff285a56daa
1
using static
A
;
2
using static
B
;
3
4
class
A
5
{
6
public class
TestMe
7
{
8
}
9
10
public static int
TestMe1
()
11
{
12
return
0
;
13
}
14
}
15
16
class
B
17
{
18
public static int
TestMe2
()
19
{
20
return
0
;
21
}
22
23
public class
TestMe1
24
{
25
}
26
}
27
28
class
C
29
{
30
public static void
Main
()
31
{
32
new
TestMe1
();
33
}
34
}