This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 160699 - [ccode completion] Mismatch usage of "->" and "."
Summary: [ccode completion] Mismatch usage of "->" and "."
Status: RESOLVED DUPLICATE of bug 145500
Alias: None
Product: cnd
Classification: Unclassified
Component: Code Completion (show other bugs)
Version: 6.x
Hardware: All Linux
: P3 blocker (vote)
Assignee: issues@cnd
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2009-03-20 00:02 UTC by rmartins
Modified: 2009-03-20 20:26 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description rmartins 2009-03-20 00:02:50 UTC
class A{
public:
   A(){}
   ~A(){}
   void close(){}
}

int main(){
A* a;
a.   <--- shows possible completion method (but it shouldn't, because it's a pointer type. It should only work with ->

A b;
b->  <--- the reverse situation, it should only work the .
}
Comment 1 nnnnnk 2009-03-20 20:26:53 UTC

*** This issue has been marked as a duplicate of 145500 ***