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-11-02 00:01:13 +0300
committerMiguel de Icaza <miguel@gnome.org>2004-11-02 00:01:13 +0300
commit427e1fa49c92a6603d1bbcdbad05c2eca043c09a (patch)
tree108e565255ca67b231618c17159805fadf925130 /mcs/errors/cs0029-5.cs
parent25ff58cec2fd0d5a627b8c5e3075737aa280c6cc (diff)
Add new error
svn path=/trunk/mcs/; revision=35536
Diffstat (limited to 'mcs/errors/cs0029-5.cs')
-rw-r--r--mcs/errors/cs0029-5.cs9
1 files changed, 9 insertions, 0 deletions
diff --git a/mcs/errors/cs0029-5.cs b/mcs/errors/cs0029-5.cs
new file mode 100644
index 00000000000..98b1b488ccc
--- /dev/null
+++ b/mcs/errors/cs0029-5.cs
@@ -0,0 +1,9 @@
+class X {
+ static void Main()
+ {
+ int a = new T ();
+ }
+}
+
+struct T {
+}