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:
authorRaja R Harinath <harinath@hurrynot.org>2004-10-07 11:34:56 +0400
committerRaja R Harinath <harinath@hurrynot.org>2004-10-07 11:34:56 +0400
commit2eae9cd2001c9898c67cd34164fef254dcf87610 (patch)
treef7bd8902c9c98ba6ae46e1818bd48e7396dcf3d6 /mcs/tests/test-307.cs
parent5024589db155ca7d65eb72d29cb4d7ed590e1a5d (diff)
* Makefile (TEST_TAG): Rename back to 'mcs' and 'gmcs' to keep in
sync with errors/Makefile. Reported by K Sathyasudha <ksathyasudha@novell.com>. Testcases for type-resolution. * test-300.cs: Add tests for local declarations and 'foreach'. * test-301.cs: New testcase: several 'unsafe' related keywords. * test-302.cs: New testcase: 'catch' clause parameters. * test-303.cs: New testcase: 'using' keyword. * test-304.cs, test-305.cs, test-306.cs, test-307.cs: New. Variants that use namespace aliases. * Makefile (NEW_TEST_SOURCES_common): Add new testcases. svn path=/trunk/mcs/; revision=34774
Diffstat (limited to 'mcs/tests/test-307.cs')
-rw-r--r--mcs/tests/test-307.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/mcs/tests/test-307.cs b/mcs/tests/test-307.cs
index 1beb2eec72e..3f4d2f4ed34 100644
--- a/mcs/tests/test-307.cs
+++ b/mcs/tests/test-307.cs
@@ -6,7 +6,7 @@ class A
{
class D : IDisposable
{
- void IDisposable.Dispose () { throw new Exception ("really bad"); }
+ void IDisposable.Dispose () { throw new Exception ("'using' and 'new' didn't resolve C as A+B+C"); }
}
public class B