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
Add support for Windows x64 Full AOT + LLVM + Interpreter on CI. (#15276)
[mono-project.git]
/
mcs
/
tests
/
test-partial-16.cs
blob
e05ccd43098c93418378ea1158b9cdb6097422ce
1
namespace
A
2
{
3
partial class
C
4
{
5
}
6
}
7
8
namespace
A
9
{
10
using
B
;
11
12
partial class
C
13
{
14
public static bool
f
=
C2
.
Test
();
15
object
o
=
new
C2
().
Test_I
();
16
}
17
}
18
19
namespace
B
20
{
21
partial class
C2
22
{
23
public static bool
Test
()
24
{
25
return false
;
26
}
27
28
public object
Test_I
()
29
{
30
return this
;
31
}
32
33
public static void
Main
()
34
{
35
}
36
37
}
38
}