2010-06-03 Jb Evain <jbevain@novell.com>
[mcs.git] / 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