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

gtest-214.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a82f7161967a866128832b9d81ebfc48ede9e24d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
//
// Test to check that in the 2.x profile, we add the RuntimeCompatibilityAttribute
// if none is specified.  Bug 76364
//
using System;
using System.Reflection;
using System.Runtime.CompilerServices;

class X {
	public static int Main ()
	{
		object [] attrs = typeof (X).Assembly.GetCustomAttributes (true);

		foreach (object o in attrs){
			if (o is RuntimeCompatibilityAttribute){
				RuntimeCompatibilityAttribute a = (RuntimeCompatibilityAttribute) o;

				if (a.WrapNonExceptionThrows)
					return 0;
			}
		}

		// failed, did not find the attribute
		return 1;
	}
}