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

cs0181.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f04342c4a8bd5a874e9d793a0a7169e5de4e44af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// CS0181: Attribute constructor parameter has type `int[,]', which is not a valid attribute parameter type
// Line: 13

using System;

class TestAttribute: Attribute
{
    public TestAttribute (int[,] i) {}
}

public class E
{
    [Test (null)]
    public void Method () {}
}