1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-24 09:25:31 +02:00

Test case for bug 269727

This commit is contained in:
Sergey Prigogin 2009-03-23 18:16:29 +00:00
parent 2c3979ce37
commit 48082ac842

View file

@ -1136,4 +1136,14 @@ public class IndexCPPBindingResolutionBugs extends IndexBindingResolutionTestBas
public void testLookupScopeForConversionNames_267221() throws Exception {
getBindingFromASTName("operator S *", 12, ICPPMethod.class);
}
// namespace ns1 { namespace ns2 {
// class A {};
// }}
// using namespace ns1::ns2;
// A a;
public void _testTwoLevelUsingDirective_269727() throws Exception {
getBindingFromASTName("A a", 1, ICPPClassType.class);
}
}