Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/errors/cs0625-2.cs')
-rw-r--r--mcs/errors/cs0625-2.cs17
1 files changed, 0 insertions, 17 deletions
diff --git a/mcs/errors/cs0625-2.cs b/mcs/errors/cs0625-2.cs
deleted file mode 100644
index db7f26a8781..00000000000
--- a/mcs/errors/cs0625-2.cs
+++ /dev/null
@@ -1,17 +0,0 @@
-// cs0625-2.cs: `cs0625.GValue.foo': Instance field types marked with StructLayout(LayoutKind.Explicit) must have a FieldOffset attribute
-// Line: 10
-
-using System;
-using System.Runtime.InteropServices;
-
-namespace cs0625 {
- [StructLayout(LayoutKind.Explicit)]
- partial class GValue {
- public int foo;
- }
-
- class Tests {
- public static void Main () {
- }
- }
-}