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:
authorMiguel de Icaza <miguel@gnome.org>2003-05-05 05:43:00 +0400
committerMiguel de Icaza <miguel@gnome.org>2003-05-05 05:43:00 +0400
commit2f1334a84ad3db0a6be1fff4bfc0e83800e1aa1c (patch)
tree5422e4a7381b6f2db88492a4a53796959f032ed1 /mcs/errors/cs0676.cs
parentef2304ff2116f19fd92c2c6484348ce6f497cdd0 (diff)
More errors
svn path=/trunk/mcs/; revision=14282
Diffstat (limited to 'mcs/errors/cs0676.cs')
-rw-r--r--mcs/errors/cs0676.cs10
1 files changed, 10 insertions, 0 deletions
diff --git a/mcs/errors/cs0676.cs b/mcs/errors/cs0676.cs
new file mode 100644
index 00000000000..b2f8ad7c846
--- /dev/null
+++ b/mcs/errors/cs0676.cs
@@ -0,0 +1,10 @@
+unsafe class X {
+ static volatile int j;
+
+ static void Main ()
+ {
+ fixed (int *p = &j){
+
+ }
+ }
+}