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>2005-12-14 00:00:44 +0300
committerMarek Safar <marek.safar@gmail.com>2005-12-14 00:00:44 +0300
commited27f04d3741ff4b1ff30a5f6261fd09cce09812 (patch)
tree119b0c71681b5f96b209f8998ae2071d1dc506fe /mcs/tests/test-477.cs
parent8ca0a4aa088964602966c97a5a17b3d1ad32d162 (diff)
New test.
svn path=/trunk/mcs/; revision=54322
Diffstat (limited to 'mcs/tests/test-477.cs')
-rw-r--r--mcs/tests/test-477.cs9
1 files changed, 9 insertions, 0 deletions
diff --git a/mcs/tests/test-477.cs b/mcs/tests/test-477.cs
new file mode 100644
index 00000000000..8d2b87e8cd3
--- /dev/null
+++ b/mcs/tests/test-477.cs
@@ -0,0 +1,9 @@
+// Compiler options: -warnaserror
+
+class C
+{
+ [System.Diagnostics.Conditional("DEBUG")]
+ public void Test (ref int i) {}
+
+ public static void Main () {}
+}