| Summary: | Content Assist: Method signature proposals do not work. | ||
|---|---|---|---|
| Product: | [Tools] CDT | Reporter: | James Ciesielski <jciesiel> |
| Component: | cdt-parser | Assignee: | John Camelon <john.camelon> |
| Status: | VERIFIED DUPLICATE | QA Contact: | |
| Severity: | normal | ||
| Priority: | P3 | ||
| Version: | 2.0 | ||
| Target Milestone: | --- | ||
| Hardware: | PC | ||
| OS: | Windows XP | ||
| Whiteboard: | |||
This is a duplicate of another defect (i.e. the feature is not yet completed.) *** This bug has been marked as a duplicate of 50807 *** This bug has been verified on Eclipse build 20040603 and CDT build 200406030301, and it passes. Pixy. marking as verified |
Eclipse 3.0M6 CDT Build 2.0.0.0031 Sun JDK 1.4.2_02 Test case: 1. Create a managed make C project, call it MgdC (for example). 2. Add a file, call it main.c (for example). 3. Insert the following code into main.c: void foo(int i) { return; } void foo(int i, int j) { return; } int main() { foo( // ** (A) ** return 0; } 4. Execute Content Assist on line (A) using "foo(" as a prefix. Expected: I expected to see a completion list that contained both foo() functions (same functionality as JDT), instead I got the basic completion list (without either foo() function).