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:
authorDuncan Mak <duncan@mono-cvs.ximian.com>2004-12-30 20:31:14 +0300
committerDuncan Mak <duncan@mono-cvs.ximian.com>2004-12-30 20:31:14 +0300
commitbc428acef000f437eae721d2a6069b5d6753d5f0 (patch)
tree22e491549a5eccf8a08b81295129d95ee1c4ed0e /mcs/errors/cs0246-9.cs
parent738d41e1dc6b91151346be572eab7909551ba911 (diff)
2004-12-29 Duncan Mak <duncan@ximian.com>
* cs0246-9.cs: Added to track bug #70758. * cs1510-3.cs: Added to track bug #70402. svn path=/trunk/mcs/; revision=38192
Diffstat (limited to 'mcs/errors/cs0246-9.cs')
-rw-r--r--mcs/errors/cs0246-9.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/mcs/errors/cs0246-9.cs b/mcs/errors/cs0246-9.cs
new file mode 100644
index 00000000000..9896106bfeb
--- /dev/null
+++ b/mcs/errors/cs0246-9.cs
@@ -0,0 +1,5 @@
+// error CS0246: Cannot find type 'foo'
+// This is from bug #70758
+struct bar {
+ foo foo;
+}