Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0655-2.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 10e4441fa2554d5f90fe0b2507e9d51162817a9e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// cs0655.cs: 'd' is not a valid named attribute argument because its type is not valid attribute type
// Line: 11

using System;

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

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