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

cs0122-4.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 040d60d05b16481461756d3c4b7af17ef965af65 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// cs0122-4.cs: `FooAttribute.Foo' is inaccessible due to its protection level
// Line: 11
// This is bug #55970

using System;

public sealed class FooAttribute : Attribute {
	int Foo;
}

[Foo (Foo = 1)]
public class Tests {
	public static void Main () {
	}
}