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>2001-12-24 04:05:39 +0300
committerMiguel de Icaza <miguel@gnome.org>2001-12-24 04:05:39 +0300
commit1baf009cdd83c659371bb57d229410949ff2ad2d (patch)
tree61d8228fcaac2f80fdcd16a26a5ec65a6eb2412c /mcs/errors/bug13.cs
parent094c8f790b86e75fd4531319d2743399acf69ec5 (diff)
More bugs
svn path=/trunk/mcs/; revision=1704
Diffstat (limited to 'mcs/errors/bug13.cs')
-rwxr-xr-xmcs/errors/bug13.cs11
1 files changed, 11 insertions, 0 deletions
diff --git a/mcs/errors/bug13.cs b/mcs/errors/bug13.cs
new file mode 100755
index 00000000000..91016d0a7c7
--- /dev/null
+++ b/mcs/errors/bug13.cs
@@ -0,0 +1,11 @@
+using System;
+
+class X {
+ static void Main ()
+ {
+ Type t = null;
+
+ if (t.GetType () == null)
+ return;
+ }
+}