[xbuild] More tweaks for portable debug mode
[mono-project.git] / mcs / errors / cs0655-3.cs
blobac962bf0849c450a7d2b92a3a80c2c7155f89a66
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