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-104.cs')
-rw-r--r--mcs/tests/test-104.cs14
1 files changed, 0 insertions, 14 deletions
diff --git a/mcs/tests/test-104.cs b/mcs/tests/test-104.cs
deleted file mode 100644
index 82fcfac57fd..00000000000
--- a/mcs/tests/test-104.cs
+++ /dev/null
@@ -1,14 +0,0 @@
-//
-// Test to ensure we do correct overload resolution
-//
-using System;
-
-class Test {
- public static int Main(String[] args) {
- int iTest = 1;
-
- System.Threading.Interlocked.Increment(ref iTest);
-
- return 0;
- }
-}