Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test-657-p2.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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
		}
	}
}