[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0655-2.cs
blob57c3267c77d07476818c1af23df4e574e8c89530
1 // CS0655: `a' is not a valid named attribute argument because it is not a valid attribute parameter type
2 // Line: 11
4 using System;
6 class TestAttribute : Attribute
8 public int[][] a;
11 [Test (a = null)]
12 class C