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
Merge pull request #1861 from saper/home-override
[mono-project.git]
/
mcs
/
tests
/
test-238.cs
blob
a760b5117f4586ec70265bcc004c2eb5b0eefcac
1
using
System
;
2
using
System
.
Diagnostics
;
3
4
class
TestClass
{
5
[
Conditional
(
"UNDEFINED_CONDITION"
)]
6
static void
ConditionalMethod
()
7
{
8
Environment
.
Exit
(
1
);
9
}
10
11
public static int
Main
()
12
{
13
ConditionalMethod
();
14
Console
.
WriteLine
(
"Succeeded"
);
15
return
0
;
16
}
17
}