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

cs0579-10.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 242640762bda4e8f77d8ee5b46b1e3f044ffb4e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// cs0579-10.cs: The attribute `SimpleAttribute' cannot be applied multiple times
// Line : 18

using System;

[AttributeUsage (AttributeTargets.All, AllowMultiple = false)]
public class SimpleAttribute : Attribute {

	public SimpleAttribute ()
	{
	}
	
}

[Simple]
public partial class Blah { }

[Simple]
public partial class Blah { }