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

cs8211.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1422a14c37f74deef079c96adea2f44d9646ad09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// cs8211.cs: Array expression passed to attribute is not unidimensional
// Line: 14
using System;
using System.Reflection;

[AttributeUsage (AttributeTargets.All)]
public class MineAttribute : Attribute {
	public MineAttribute (Type [] t)
	{
	}
}


[Mine(new Type [2,2])]
public class Foo {	
	public static int Main ()
	{
		return 0;
	}
}