Merge branch 'xml-fixes' of https://github.com/myeisha/mono into myeisha-xml-fixes
[mono-project.git] / mcs / errors / cs0655-2.cs
blobde05ba7ba2246d39227d4c6ff5b924666cd84ded
1 // cs0655-2.cs: `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