[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs0636-2.cs
blob34ee788101f6a46ab11dc9b2e19a067d2a8c0d2e
1 // CS0636: The FieldOffset attribute can only be placed on members of types marked with the StructLayout(LayoutKind.Explicit)
2 // Line: 10
4 using System;
5 using System.Runtime.InteropServices;
7 namespace CS0636 {
8 class GValue {
9 [FieldOffset (4)]
10 public const int value = 2;