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-79.cs')
-rwxr-xr-xmcs/tests/test-79.cs17
1 files changed, 0 insertions, 17 deletions
diff --git a/mcs/tests/test-79.cs b/mcs/tests/test-79.cs
deleted file mode 100755
index 8a4012db8ad..00000000000
--- a/mcs/tests/test-79.cs
+++ /dev/null
@@ -1,17 +0,0 @@
-//
-// This test excercises the compiler being able to compute
-// correctly the return type in the presence of null (as null
-// will be implicitly convertible to anything
-//
-class X {
-
- static int Main ()
- {
- object o = null;
-
- string s = o == null ? "string" : null;
- string d = o == null ? null : "string";
-
- return 0;
- }
-}