summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0655-2.cs
blob: 57c3267c77d07476818c1af23df4e574e8c89530 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// CS0655: `a' is not a valid named attribute argument because it is not a valid attribute parameter type
// Line: 11

using System;

class TestAttribute : Attribute
{
   public int[][] a;
}

[Test (a = null)]
class C
{
}