Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / errors / cs0181-2.cs
1 // CS0181: Attribute constructor parameter has type `int[][]', which is not a valid attribute parameter type
2 // Line: 13
3
4 using System;
5
6 class TestAttribute: Attribute
7 {
8         public TestAttribute (int[][] o) {}
9 }
10
11 public class E
12 {
13         [Test (null)]
14         public static void Main ()
15         {
16                 System.Reflection.MethodBase.GetCurrentMethod().GetCustomAttributes (true);
17         }
18 }