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-483.cs')
-rw-r--r--mcs/tests/test-483.cs11
1 files changed, 0 insertions, 11 deletions
diff --git a/mcs/tests/test-483.cs b/mcs/tests/test-483.cs
deleted file mode 100644
index 666ae5d83d3..00000000000
--- a/mcs/tests/test-483.cs
+++ /dev/null
@@ -1,11 +0,0 @@
-// Compiler options: -r:test-483-lib.dll
-
-using System;
-
-public class Tests {
-
- public static void Main () {
- Bar bar = null;
- try { bar.clone (); } catch (NullReferenceException) {}
- }
-}