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
2010-05-13 Rodrigo Kumpera <rkumpera@novell.com>
[mono-project.git]
/
mcs
/
tests
/
test-238.cs
blob
def44e87b7c4d6ce46e3d340866fd5c12e7664fd
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
static int
Main
()
12
{
13
ConditionalMethod
();
14
Console
.
WriteLine
(
"Succeeded"
);
15
return
0
;
16
}
17
}