[wasm] Implement GC support. Embedder must provide main loop pumping function request...
[mono.git] / mcs / errors / cs0122-12.cs
1 // CS0122: `Test.SomeAttribute.SomeAttribute()' is inaccessible due to its protection level
2 // Line: 10
3
4 using System;
5
6 namespace Test
7 {
8         public class SomeAttribute : Attribute
9         {
10                 SomeAttribute() {}
11         }
12
13         [SomeAttribute]
14         public class SomeClass
15         {
16         } 
17 }