* HttpWebRequest.cs: When retrying a POST request after an authentication
[mono.git] / mcs / errors / cs8211.cs
1 // cs8211.cs: Array expression passed to attribute is not unidimensional
2 // Line: 14
3 using System;
4 using System.Reflection;
5
6 [AttributeUsage (AttributeTargets.All)]
7 public class MineAttribute : Attribute {
8         public MineAttribute (Type [] t)
9         {
10         }
11 }
12
13
14 [Mine(new Type [2,2])]
15 public class Foo {      
16         public static int Main ()
17         {
18                 return 0;
19         }
20 }
21
22
23
24
25
26