[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs0617-5.cs
blobe9a49b2d4deb1d1acb2153852e20c4e8dad989d9
1 // CS0617: `Foo' is not a valid named attribute argument. Named attribute arguments must be fields which are not readonly, static, const or read-write properties which are public and not static
2 // Line: 11
4 using System;
6 public sealed class FooAttribute : Attribute
8 public short Foo { get; private set; }
11 [Foo (Foo = 1)]
12 public class Tests