remove unused using
[mcs.git] / tests / test-186.cs
blobe4c28b5b37d52e6566c2106e1496514b210380f2
1 using System;
3 namespace TestBUG
5 public class myAttribute : Attribute
7 public myAttribute(string p1, string p2, string p3, int p4) {}
11 // Typecasts on attributes, fix for bug 37363
13 [myAttribute("stringArgument", (String)null, (String)null, 2)]
14 public class Test
17 static int Main ()
19 return 0;