From 2c6304082f838e54f27619cac538e7749c9b8abd Mon Sep 17 00:00:00 2001 From: Sergey Prigogin Date: Mon, 2 Jun 2008 18:52:10 +0000 Subject: [PATCH] Failing test case for bug 235196. --- .../cdt/core/parser/tests/ast2/AST2CPPTests.java | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/core/org.eclipse.cdt.core.tests/parser/org/eclipse/cdt/core/parser/tests/ast2/AST2CPPTests.java b/core/org.eclipse.cdt.core.tests/parser/org/eclipse/cdt/core/parser/tests/ast2/AST2CPPTests.java index 990ebed377e..ce29f526825 100644 --- a/core/org.eclipse.cdt.core.tests/parser/org/eclipse/cdt/core/parser/tests/ast2/AST2CPPTests.java +++ b/core/org.eclipse.cdt.core.tests/parser/org/eclipse/cdt/core/parser/tests/ast2/AST2CPPTests.java @@ -5629,4 +5629,15 @@ public class AST2CPPTests extends AST2BaseTest { public void testRecursiveUserDefinedFieldAccess_Bug205964() throws Exception { parseAndCheckBindings(getAboveComment()); } + + // namespace ns { + // class A {}; + // } + // + // using ns::A; + // + // class B: public A {}; + public void _testBug235196() throws Exception { + parseAndCheckBindings(getAboveComment()); + } }