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>2005-05-12 19:43:04 +0400
committerMarek Safar <marek.safar@gmail.com>2005-05-12 19:43:04 +0400
commit61fc28afc7d2bfab5f343db69b0fa142c66bc423 (patch)
tree2c2b532d54303b169439ec6c88baba7eee067671 /mcs/errors/cs0208-9.cs
parent120fab630f177f6003002a1839e9aa7fcc4b7362 (diff)
parent5cec25f52b303326bce35ccfbe93544758e707e9 (diff)
renamed
svn path=/trunk/mcs/; revision=44452
Diffstat (limited to 'mcs/errors/cs0208-9.cs')
-rw-r--r--mcs/errors/cs0208-9.cs11
1 files changed, 11 insertions, 0 deletions
diff --git a/mcs/errors/cs0208-9.cs b/mcs/errors/cs0208-9.cs
new file mode 100644
index 00000000000..ce33dded0a7
--- /dev/null
+++ b/mcs/errors/cs0208-9.cs
@@ -0,0 +1,11 @@
+// cs0208-9.cs: Cannot declare a pointer to a managed type ('Foo')
+// Line: 7
+// Compiler options: -t:library -unsafe
+
+public unsafe struct Foo
+{
+ public Foo *foo;
+ string x;
+}
+
+