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()); + } }