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:
authorMarek Safar <marek.safar@gmail.com>2010-11-22 18:18:12 +0300
committerMarek Safar <marek.safar@gmail.com>2010-11-22 18:18:12 +0300
commitd3faa17314705bbc9a0bcc2e59f79a54a419528c (patch)
tree5b862639f1039c8a3635dd26f761a14a063744e7 /mcs/tests/gtest-354.cs
parentf47f73e852d59f94b53dd0c4f242de91973be13c (diff)
group all fixed buffer tests
Diffstat (limited to 'mcs/tests/gtest-354.cs')
-rw-r--r--mcs/tests/gtest-354.cs27
1 files changed, 0 insertions, 27 deletions
diff --git a/mcs/tests/gtest-354.cs b/mcs/tests/gtest-354.cs
deleted file mode 100644
index 5cb56787084..00000000000
--- a/mcs/tests/gtest-354.cs
+++ /dev/null
@@ -1,27 +0,0 @@
-// Compiler options: -unsafe
-
-using System.Runtime.InteropServices;
-
-public unsafe struct A
-{
- fixed byte fileid [DbConst.DB_FILE_ID_LEN];
-}
-
-public static class DbConst
-{
- public const int DB_FILE_ID_LEN = 20;
-}
-
-[StructLayout(LayoutKind.Sequential, Size=92)]
-internal unsafe struct hci_dev_info {
- public fixed sbyte name[8];
- private fixed byte bdaddr[6];
- hci_dev_info* foo;
-}
-
-class M
-{
- public static void Main ()
- {
- }
-}