[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0122-4.cs
blobf545a99a2ebda858c9eda2089ea12178681babd5
1 // CS0122: `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 () {