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

test-118.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e5b1140be59e12ec96d22f7131935632ac5f4fbc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using System;
using System.Security.Policy;
using System.Threading;

class Container {

	// LoaderOptimization exists as an enum
	// and LoaderOptimization is also the abbreviation for
	// LoaderOptimizationAttribute
	[LoaderOptimization (LoaderOptimization.SingleDomain)]
	public static int Main (string[] args) {
		return 0;
	}
}