2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0122-12.cs
blob9a0c42bcfb5ff7b0550d8cc126d0c97e2c6b13ba
1 // CS0122: `Test.SomeAttribute.SomeAttribute()' is inaccessible due to its protection level
2 // Line: 10
4 using System;
6 namespace Test
8 public class SomeAttribute : Attribute
10 SomeAttribute() {}
13 [SomeAttribute]
14 public class SomeClass