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>2006-12-18 22:16:21 +0300
committerMarek Safar <marek.safar@gmail.com>2006-12-18 22:16:21 +0300
commit4a63dec64fa0a9c0e2a769bbdac2289d52ff3965 (patch)
tree418cc87148260913b0abed3284d9821f0e71d91d /mcs/tests/test-546.cs
parent96501a27d38f25c113cd8ed331b1f04a0d7ce3db (diff)
New test based on #80300
svn path=/trunk/mcs/; revision=69680
Diffstat (limited to 'mcs/tests/test-546.cs')
-rw-r--r--mcs/tests/test-546.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/mcs/tests/test-546.cs b/mcs/tests/test-546.cs
new file mode 100644
index 00000000000..f7197d5e58b
--- /dev/null
+++ b/mcs/tests/test-546.cs
@@ -0,0 +1,15 @@
+#if DEF1
+#define DEF2
+#endif
+
+#if DEF2
+Invisible code;
+#endif
+
+namespace NameSpace
+{
+ class C
+ {
+ public static void Main () {}
+ }
+} \ No newline at end of file