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>2008-03-07 14:29:01 +0300
committerMarek Safar <marek.safar@gmail.com>2008-03-07 14:29:01 +0300
commitdf4276338409c92fc7109acfaa82d12f83021f99 (patch)
tree6384c13438a11c33ecb6792d518a643bc0adaec1 /mcs/tests/test-574.cs
parentac3a7f2496a5ba38f61a7d3d20dd3a30129ce98a (diff)
parent1f18adb5c4ed1e53f8e9572ea6434dabb8b40753 (diff)
New test + update.
svn path=/trunk/mcs/; revision=97678
Diffstat (limited to 'mcs/tests/test-574.cs')
-rw-r--r--mcs/tests/test-574.cs15
1 files changed, 0 insertions, 15 deletions
diff --git a/mcs/tests/test-574.cs b/mcs/tests/test-574.cs
deleted file mode 100644
index e0243174b99..00000000000
--- a/mcs/tests/test-574.cs
+++ /dev/null
@@ -1,15 +0,0 @@
-// Compiler options: -unsafe
-
-public class aClass
-{
- public unsafe struct foo_t
- {
- public fixed char b[16];
- }
-
- public static unsafe void Main(string[] args)
- {
- foo_t bar;
- char* oo = bar.b;
- }
-}