[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0181-2.cs
blob6334606fae78c9eff777f5c95fa82079a3a42963
1 // CS0181: Attribute constructor parameter has type `int[][]', which is not a valid attribute parameter type
2 // Line: 13
4 using System;
6 class TestAttribute: Attribute
8 public TestAttribute (int[][] o) {}
11 public class E
13 [Test (null)]
14 public static void Main ()
16 System.Reflection.MethodBase.GetCurrentMethod().GetCustomAttributes (true);