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>2004-09-07 00:21:21 +0400
committerMiguel de Icaza <miguel@gnome.org>2004-09-07 00:21:21 +0400
commitab2a586fa14d649970a18669495af7862248cd04 (patch)
treeb65bcef7eb329a02a8611da451b845dbf0a03278 /mcs/errors/cs0214-6.cs
parent54c1054514c577643c7f52431faceb293b6f328a (diff)
Add new test
svn path=/trunk/mcs/; revision=33448
Diffstat (limited to 'mcs/errors/cs0214-6.cs')
-rw-r--r--mcs/errors/cs0214-6.cs18
1 files changed, 18 insertions, 0 deletions
diff --git a/mcs/errors/cs0214-6.cs b/mcs/errors/cs0214-6.cs
new file mode 100644
index 00000000000..55d2440be3e
--- /dev/null
+++ b/mcs/errors/cs0214-6.cs
@@ -0,0 +1,18 @@
+using System;
+
+namespace ConsoleApplication1
+{
+ class Class1
+ {
+ static void Main(string[] args)
+ {
+ string s = typeof(void *).Name;
+ }
+ }
+}
+
+
+
+
+
+