Merge pull request #907 from enricosada/era_names
[mono.git] / mcs / errors / cs0625.cs
index 98e9352e6f40638ba49468e0787f893fa4174101..ccfc56fe596c1c32dc5cf5a6a3e0ff722e8aafcd 100644 (file)
@@ -1,9 +1,10 @@
-// CS0625: Instance field of type marked with StructLayout(LayoutKind.Explicit) must have a FieldOffset attribute.
+// CS0625: `CS0625.GValue.name': Instance field types marked with StructLayout(LayoutKind.Explicit) must have a FieldOffset attribute
+// Line: 11
 
 using System;
 using System.Runtime.InteropServices;
 
-namespace cs0625 {
+namespace CS0625 {
        [StructLayout(LayoutKind.Explicit)]
        struct GValue {
                public string name;