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>2002-05-18 00:25:15 +0400
committerMiguel de Icaza <miguel@gnome.org>2002-05-18 00:25:15 +0400
commitcfc4b4b32a89c078cd03a343ba576c35b51fd7d7 (patch)
tree041fc2bc54372592f96d4ba569e77be25a7d20f1 /mcs/errors/cs0214-3.cs
parent3cd86625e7059cfea0f4ca7505b33a53131d53e2 (diff)
Add more tests
svn path=/trunk/mcs/; revision=4725
Diffstat (limited to 'mcs/errors/cs0214-3.cs')
-rwxr-xr-xmcs/errors/cs0214-3.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/mcs/errors/cs0214-3.cs b/mcs/errors/cs0214-3.cs
new file mode 100755
index 00000000000..e40bbfb7247
--- /dev/null
+++ b/mcs/errors/cs0214-3.cs
@@ -0,0 +1,12 @@
+struct X {
+ static unsafe void *a ()
+ {
+ return null;
+ }
+
+ static void Main ()
+ {
+ a ();
+ }
+
+}