New test.
[mono.git] / mcs / tests / test-325.cs
1 using System; 
2  
3 public class RequestAttribute: Attribute { 
4         public RequestAttribute(string a, string b, params string[] c) 
5         { 
6          
7         } 
8
9  
10 public class MyClass { 
11         [Request("somereq", "result")] 
12         public static int SomeRequest() 
13         { 
14                 return 0; 
15         } 
16          
17         public static void Main() 
18         { 
19                 SomeRequest(); 
20         } 
21 }