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
2010-06-21 Atsushi Enomoto <atsushi@ximian.com>
[mcs.git]
/
tests
/
test-657-p2.cs
blob
5bc8cf06b5aa618afc5494949f7cecd1a496086c
1
#define DEBUG
2
3
using
System
;
4
5
namespace
TestDebug
6
{
7
class
C
8
{
9
public static void
Method
()
10
{
11
#if !DEBUG
12
throw new
ApplicationException
(
"3"
);
13
#endif
14
}
15
}
16
}