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>2007-01-02 14:29:47 +0300
committerMarek Safar <marek.safar@gmail.com>2007-01-02 14:29:47 +0300
commit181b3e22affffdb7f6937e9333b9e8c257478c07 (patch)
treecb622c82c47468917566a8e8d2db99dfa8fd9140 /mcs/tests/test-552.cs
parentd4e1ed0407d433a942cc7c4d73d1cb7a743634db (diff)
Put back test, which Miguel overwrote (was test-542)
svn path=/trunk/mcs/; revision=70343
Diffstat (limited to 'mcs/tests/test-552.cs')
-rw-r--r--mcs/tests/test-552.cs18
1 files changed, 18 insertions, 0 deletions
diff --git a/mcs/tests/test-552.cs b/mcs/tests/test-552.cs
new file mode 100644
index 00000000000..46e44c8a4fb
--- /dev/null
+++ b/mcs/tests/test-552.cs
@@ -0,0 +1,18 @@
+class C
+{
+ static void Test (C arg)
+ {
+ }
+
+ public static void Main ()
+ {
+ object value = null;
+ C.Test(
+#if true
+ (C)
+#else
+ no error here
+#endif
+ value);
+ }
+} \ No newline at end of file