1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-23 17:05:26 +02:00

Renamed test case for bug 256240.

This commit is contained in:
Sergey Prigogin 2008-11-27 20:43:50 +00:00
parent dbc15625df
commit 6209b8f29d

View file

@ -1041,10 +1041,11 @@ public class IndexCPPBindingResolutionBugs extends IndexBindingResolutionTestBas
// void func(const int* x) {}
// void func(int* p) {
// func(const_cast<const int*>(p));
// const int* q = p;
// func(q);
// }
public void _testFunctionWithConstCast_Bug256240() throws Exception {
getBindingFromASTName("func(const_cast", 4, ICPPFunction.class);
public void _testOverloadedFunctionFromIndex_Bug256240() throws Exception {
getBindingFromASTName("func(q", 4, ICPPFunction.class);
}
private void assertBindings(String[] expected, ICPPBase[] bases) throws DOMException {