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:
authorRaja R Harinath <harinath@hurrynot.org>2005-04-15 12:40:45 +0400
committerRaja R Harinath <harinath@hurrynot.org>2005-04-15 12:40:45 +0400
commitd4ea88f3c2457748723ff8e9a855d8b94c8916cf (patch)
tree8d4bdf6d4e6f02d63dc2fecccefcf6f2c44970d9 /mcs/tests/test-365.cs
parent8431d335c4bae04b30a0c0a22b668483002812b6 (diff)
Remove invalid testcase. It is rejected by CSC 2.0.
svn path=/trunk/mcs/; revision=43024
Diffstat (limited to 'mcs/tests/test-365.cs')
-rw-r--r--mcs/tests/test-365.cs20
1 files changed, 0 insertions, 20 deletions
diff --git a/mcs/tests/test-365.cs b/mcs/tests/test-365.cs
deleted file mode 100644
index d990c37a605..00000000000
--- a/mcs/tests/test-365.cs
+++ /dev/null
@@ -1,20 +0,0 @@
-// Compiler options: -unsafe
-using System.Runtime.InteropServices;
-
-[StructLayout(LayoutKind.Sequential)]
-internal unsafe struct _Port {
- [MarshalAs(UnmanagedType.ByValTStr, SizeConst=128)] char[] port;
- int a;
-}
-
-[StructLayout(LayoutKind.Sequential)]
-internal unsafe struct _Camera
-{
- _Port *port;
-}
-
-class d {
- static void Main ()
- {
- }
-}