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-01-04 20:39:44 +0300
committerMiguel de Icaza <miguel@gnome.org>2006-01-04 20:39:44 +0300
commit93972cf03c8ebd1a01d6b1510b5a85d0cdc98d2e (patch)
tree1f73153db14a015c83660de642426e765db0ed4f /mcs/tests/test-482.cs
parentb461dc8c382a84d8b4de0d816d6cea58983eefdf (diff)
Add test for 77147
svn path=/trunk/mcs/; revision=55059
Diffstat (limited to 'mcs/tests/test-482.cs')
-rw-r--r--mcs/tests/test-482.cs11
1 files changed, 11 insertions, 0 deletions
diff --git a/mcs/tests/test-482.cs b/mcs/tests/test-482.cs
new file mode 100644
index 00000000000..a7eaa98641f
--- /dev/null
+++ b/mcs/tests/test-482.cs
@@ -0,0 +1,11 @@
+//
+// This is a test case for 77147
+//
+class X {
+ public void M4(int arg) { }
+ public void M4(int arg, __arglist) { }
+
+ static void Main ()
+ {
+ }
+}