[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs0625-3.cs
blobd84346b6f12ac98cbe7afee4f1b3128d60a9528c
1 // CS0625: `CS0625.GValue.value': Instance field types marked with StructLayout(LayoutKind.Explicit) must have a FieldOffset attribute
2 // Line: 10
4 using System;
5 using System.Runtime.InteropServices;
7 namespace CS0625 {
8 [StructLayout (LayoutKind.Explicit)]
9 partial struct GValue
13 partial struct GValue {
14 public int value;
17 class Tests {
18 public static void Main () {