Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-657-p2.cs
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 }