summaryrefslogtreecommitdiff
path: root/mcs/tests/test-657-p2.cs
blob: 5bc8cf06b5aa618afc5494949f7cecd1a496086c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#define DEBUG

using System;

namespace TestDebug
{
	class C
	{
		public static void Method ()
		{
#if !DEBUG
			throw new ApplicationException ("3");
#endif
		}
	}
}