testcases for bug 57151
[mono.git] / mcs / errors / cs0625-1.cs
1 using System;
2 using System.Runtime.InteropServices;
3
4 namespace cs0625 {
5         [StructLayout(LayoutKind.Explicit)]
6         class GValue {
7                 public int foo;
8         }
9         
10         class Tests {
11                 public static void Main () {
12                 }
13         }
14 }