1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Failing test case for bug 235196.

This commit is contained in:
Sergey Prigogin 2008-06-02 18:52:10 +00:00
parent 18bdfaa18e
commit 2c6304082f

View file

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