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>2005-01-08 20:54:02 +0300
committerMiguel de Icaza <miguel@gnome.org>2005-01-08 20:54:02 +0300
commitde73422a1efe750e0b6d03e8bbe82823cbe00f50 (patch)
treecac5409def8db0c3c00f2b76f7db068bc1af6f29 /mcs/errors/cs0647-13.cs
parente9b1b859d5af175f0e72458fc367c506bbb9e390 (diff)
New errors
svn path=/trunk/mcs/; revision=38526
Diffstat (limited to 'mcs/errors/cs0647-13.cs')
-rw-r--r--mcs/errors/cs0647-13.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/mcs/errors/cs0647-13.cs b/mcs/errors/cs0647-13.cs
new file mode 100644
index 00000000000..9dd8cb903eb
--- /dev/null
+++ b/mcs/errors/cs0647-13.cs
@@ -0,0 +1,12 @@
+using System.Runtime.InteropServices;
+using System;
+
+class X {
+ [DllImport (null)]
+ extern static void Blah ();
+
+ static void Main (string [] args)
+ {
+ }
+
+}