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
[mono/tests] Fix out of tree build.
[mono-project.git]
/
mcs
/
tests
/
test-748.cs
blob
8210c92267e4d89aeeae7b545f33a60eeebc7e93
1
// Compiler options: -r:test-748-lib.dll
2
3
using
System
;
4
using
Test
;
5
using
RealTest
;
6
7
class
M
8
{
9
Foo
Test
()
10
{
11
return new
RealTest
.
Foo
();
12
}
13
14
public static void
Main
()
15
{
16
}
17
}
18
19
namespace
Test
.
Local
20
{
21
class
M
22
{
23
Foo
Test
()
24
{
25
return new
RealTest
.
Foo
();
26
}
27
}
28
}
29
30
namespace
RealTest
31
{
32
class
Foo
33
{
34
}
35
}