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 03:22:45 +0300
committerMiguel de Icaza <miguel@gnome.org>2001-12-24 03:22:45 +0300
commit94f6dc255b78c6e163db78808344e549cf1cf326 (patch)
treeb929b88427842489c19e6c5e80547927a92161d7 /mcs/errors/bug11.cs
parent0c356f107ae74dce76bbc53e5556db042fb135a3 (diff)
Add another bug
svn path=/trunk/mcs/; revision=1700
Diffstat (limited to 'mcs/errors/bug11.cs')
-rwxr-xr-xmcs/errors/bug11.cs20
1 files changed, 20 insertions, 0 deletions
diff --git a/mcs/errors/bug11.cs b/mcs/errors/bug11.cs
new file mode 100755
index 00000000000..1881eca681d
--- /dev/null
+++ b/mcs/errors/bug11.cs
@@ -0,0 +1,20 @@
+class Location {
+ static public int Null {
+ get {
+ return 1;
+ }
+ }
+}
+
+class X {
+ Location Location;
+ X ()
+ {
+ int a = Location.Null;
+ }
+
+ static void Main () {}
+}
+
+
+