blob: ac962bf0849c450a7d2b92a3a80c2c7155f89a66 (
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
{
}
|