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>2004-12-02 21:48:02 +0300
committerMarek Safar <marek.safar@gmail.com>2004-12-02 21:48:02 +0300
commit8f778b2a9b7cd0f381a19db3ad307060bb1dc738 (patch)
treec681a8a823e3f161615ddcc6d503fd43df89b5c0 /mcs/tests/test-325.cs
parent2813485b4e636d599d8b12cf026e77a5d96fa208 (diff)
2004-12-02 Marek Safar <marek.safar@seznam.cz>
* test-325.cs: New test for #70102. svn path=/trunk/mcs/; revision=36965
Diffstat (limited to 'mcs/tests/test-325.cs')
-rw-r--r--mcs/tests/test-325.cs21
1 files changed, 21 insertions, 0 deletions
diff --git a/mcs/tests/test-325.cs b/mcs/tests/test-325.cs
new file mode 100644
index 00000000000..92b97fe5d48
--- /dev/null
+++ b/mcs/tests/test-325.cs
@@ -0,0 +1,21 @@
+using System;
+
+public class RequestAttribute: Attribute {
+ public RequestAttribute(string a, string b, params string[] c)
+ {
+
+ }
+}
+
+public class MyClass {
+ [Request("somereq", "result")]
+ public static int SomeRequest()
+ {
+ return 0;
+ }
+
+ public static void Main()
+ {
+ SomeRequest();
+ }
+}