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:
authorMiguel de Icaza <miguel@gnome.org>2006-12-16 19:47:10 +0300
committerMiguel de Icaza <miguel@gnome.org>2006-12-16 19:47:10 +0300
commit72ff109919cc2274ff7fbd134fda97e16435d4d8 (patch)
tree47ef84c74d7be8a2824c87a1a126b6a5276c468e /mcs/tests/test-542.cs
parent789d4a11e241b35d0195d5db37494a2ae25bcf81 (diff)
Add test for bug #80256
svn path=/trunk/mcs/; revision=69575
Diffstat (limited to 'mcs/tests/test-542.cs')
-rw-r--r--mcs/tests/test-542.cs34
1 files changed, 17 insertions, 17 deletions
diff --git a/mcs/tests/test-542.cs b/mcs/tests/test-542.cs
index 1d131f7a0a2..46e44c8a4fb 100644
--- a/mcs/tests/test-542.cs
+++ b/mcs/tests/test-542.cs
@@ -1,18 +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);
- }
+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