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 - Completion fails on preprocessor statements
Summary: Completion fails on preprocessor statements
Status: RESOLVED FIXED
Alias: None
Product: cnd
Classification: Unclassified
Component: Code Completion (show other bugs)
Version: 5.x
Hardware: Sun All
: P3 blocker (vote)
Assignee: nnnnnk
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2008-12-05 15:49 UTC by nnnnnk
Modified: 2010-03-26 13:48 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 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
}