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
Reenable AOT, it wasn't enabled on the x86 buildbot anyway.
[mcs.git]
/
tests
/
test-partial-20.cs
blob
201936982e7a5294fef282bd50a6e71363d73d56
1
using
System
;
2
3
partial class
A
4
{
5
}
6
7
partial class
A
8
{
9
public static int
F
=
3
;
10
}
11
12
partial class
B
13
{
14
public static int
F
=
4
;
15
}
16
17
partial class
B
18
{
19
}
20
21
22
public class
C
23
{
24
public static int
Main
()
25
{
26
if
(
A
.
F
!=
3
)
27
return
1
;
28
29
if
(
B
.
F
!=
4
)
30
return
2
;
31
32
Console
.
WriteLine
(
"OK"
);
33
return
0
;
34
}
35
}