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
remove NotWorking
[mcs.git]
/
tests
/
test-partial-25.cs
blob
b9046692f094df83dbbe3bfdc0519efa327057dd
1
// Compiler options: -langversion:future
2
3
using
System
;
4
5
partial class
C
6
{
7
static partial void
Partial
(
int
i
=
8
);
8
9
static partial void
Partial
(
int
i
)
10
{
11
if
(
i
!=
8
)
12
throw new
ApplicationException
();
13
}
14
15
public static int
Main
()
16
{
17
Partial
();
18
return
0
;
19
}
20
}