2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0122-4.cs
blob040d60d05b16481461756d3c4b7af17ef965af65
1 // cs0122-4.cs: `FooAttribute.Foo' is inaccessible due to its protection level
2 // Line: 11
3 // This is bug #55970
5 using System;
7 public sealed class FooAttribute : Attribute {
8 int Foo;
11 [Foo (Foo = 1)]
12 public class Tests {
13 public static void Main () {