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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/tests/test-118.cs')
-rwxr-xr-xmcs/tests/test-118.cs14
1 files changed, 0 insertions, 14 deletions
diff --git a/mcs/tests/test-118.cs b/mcs/tests/test-118.cs
deleted file mode 100755
index 7e814876687..00000000000
--- a/mcs/tests/test-118.cs
+++ /dev/null
@@ -1,14 +0,0 @@
-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)]
- static int Main (string[] args) {
- return 0;
- }
-}