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-03-11 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
tests
/
test-82.cs
blob
9ff4032897ba7b425e7e901d49310908fe2c8bcd
1
//
2
// Test to ensure that we correctly perform type lookups - thanks to Felix A.I
3
//
4
namespace
N1
5
{
6
public enum
A
7
{
8
A_1
,
A_2
,
A_3
9
}
10
11
namespace
N2
12
{
13
public class
B
14
{
15
A member
;
16
17
void
Method
(
ref
A a
)
18
{
19
}
20
21
public static int
Main
()
22
{
23
return
0
;
24
}
25
}
26
27
}
28
}
29
30
namespace
N1
.
N3
31
{
32
public class
B
33
{
34
A member
;
35
36
void
Method
(
ref
A a
)
37
{
38
}
39
}
40
}