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 154779

Summary: Completion fails on preprocessor statements
Product: cnd Reporter: nnnnnk <nnnnnk>
Component: Code CompletionAssignee: nnnnnk <nnnnnk>
Status: RESOLVED FIXED    
Severity: blocker    
Priority: P3    
Version: 5.x   
Hardware: Sun   
OS: All   
Issue Type: DEFECT Exception Reporter:

Description nnnnnk 2008-12-05 15:49:57 UTC
Example:
template <class T> struct B {
    typedef T bType;
};

int main() {
    B<
#ifdef A
    int
#else
    long
#endif
    >::bType l; // unresolved bType
}