new error tests
[mono.git] / mcs / errors / cs0655-2.cs
1 // cs0655.cs: 'd' is not a valid named attribute argument because its type is not valid attribute type
2 // Line: 11
3
4 using System;
5
6 class TestAttribute : Attribute
7 {
8    public int[][] a;
9 }
10
11 [Test (a = null)]
12 class C
13 {
14 }