| Summary: | Methods in C++ temporary objects are not recognized | ||
|---|---|---|---|
| Product: | [Tools] CDT | Reporter: | vagran <vagran.ast> |
| Component: | cdt-parser | Assignee: | Project Inbox <cdt-parser-inbox> |
| Status: | RESOLVED WORKSFORME | QA Contact: | Markus Schorn <mschorn.eclipse> |
| Severity: | normal | ||
| Priority: | P3 | CC: | cdtdoug, vagran.ast |
| Version: | 8.0 | ||
| Target Milestone: | --- | ||
| Hardware: | PC | ||
| OS: | Linux | ||
| Whiteboard: | |||
|
Description
vagran
CDT version 8.0.0.201109151620. I have tested with:
struct A {
A(int);
int m();
};
void f(int);
void test() {
f(A(1).m());
}
|