[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs0657-13.cs
blobe0fb8c10fae2729b0b5b0fed74e7f41774848c1a
1 // CS0657: `type' is not a valid attribute location for this declaration. Valid attribute locations for this declaration are `property'. All attributes in this section will be ignored
2 // Line: 14
3 // Compiler options: -warnaserror
5 using System;
7 [AttributeUsage(AttributeTargets.All)]
8 public class TestAttribute: Attribute
12 class C
14 [type:Test]
15 int Prop {
16 set {