[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0625-2.cs
blob917016cf67e87e027ae3f24468cbb56f0d1aa520
1 // CS0625: `CS0625.GValue.foo': 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 class GValue {
10 public int foo;
13 class Tests {
14 public static void Main () {