Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-186.cs
1 using System;
2
3 namespace TestBUG
4 {
5         public class myAttribute : Attribute
6         {
7                 public myAttribute(string p1, string p2, string p3, int p4) {}
8         }
9
10         //
11         // Typecasts on attributes, fix for bug 37363
12         //
13         [myAttribute("stringArgument", (String)null, (String)null, 2)]
14         public class Test
15         {
16
17                 public static int Main  ()
18                 {
19                         return 0;
20                 }
21         }
22 }
23
24
25
26
27
28