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:
authorMarek Safar <marek.safar@gmail.com>2009-09-02 14:53:05 +0400
committerMarek Safar <marek.safar@gmail.com>2009-09-02 14:53:05 +0400
commit1f073e845f078579a648f6baabd96290984847a3 (patch)
tree4c4a8dc89abf137181047e3867c36c6e2413e68b /mcs/errors
parent77ebd5438d37ee0109af78f780810f18ed550194 (diff)
New test.
svn path=/trunk/mcs/; revision=141116
Diffstat (limited to 'mcs/errors')
-rw-r--r--mcs/errors/cs0246-20.cs10
1 files changed, 10 insertions, 0 deletions
diff --git a/mcs/errors/cs0246-20.cs b/mcs/errors/cs0246-20.cs
new file mode 100644
index 00000000000..eff7edd20a4
--- /dev/null
+++ b/mcs/errors/cs0246-20.cs
@@ -0,0 +1,10 @@
+// CS0246: The type or namespace name `C' could not be found. Are you missing a using directive or an assembly reference?
+// Line: 4
+
+using BigInteger = C.BigInteger;
+using C = Cks.Runtime.Data;
+
+namespace Cks.Runtime.Data
+{
+ public class BigInteger {}
+}