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:
authorMarek Safar <marek.safar@gmail.com>2013-01-02 20:39:15 +0400
committerMarek Safar <marek.safar@gmail.com>2013-01-02 21:19:29 +0400
commitc941f336836f808fec64380e322af53c966b7b7a (patch)
treebf98f0df942c657945ebd7bbd14445bee22a386a /mcs/tests/test-859.cs
parenta26e1575477cb84c579ba7bd1b23229210089521 (diff)
Update compiler tests
Diffstat (limited to 'mcs/tests/test-859.cs')
-rw-r--r--mcs/tests/test-859.cs24
1 files changed, 0 insertions, 24 deletions
diff --git a/mcs/tests/test-859.cs b/mcs/tests/test-859.cs
deleted file mode 100644
index fafd7f7fb30..00000000000
--- a/mcs/tests/test-859.cs
+++ /dev/null
@@ -1,24 +0,0 @@
-// Compiler options: -r:test-859-lib.dll
-
-using System;
-
-class X
-{
- void Test_PropertyOptionalParameters (C c)
- {
- // need to just run verifier on the method
- if (c == null)
- return;
-
- Console.WriteLine (c.Value);
- c.Value2 = 1;
- }
-
- public static int Main ()
- {
- var x = new X ();
- x.Test_PropertyOptionalParameters (null);
-
- return 0;
- }
-}