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 159427

Summary: Unresolved ids in template function specialization declaration
Product: cnd Reporter: nnnnnk <nnnnnk>
Component: Code ModelAssignee: nnnnnk <nnnnnk>
Status: RESOLVED WORKSFORME    
Severity: blocker    
Priority: P4    
Version: 6.x   
Hardware: Sun   
OS: All   
Issue Type: DEFECT Exception Reporter:

Description nnnnnk 2009-03-02 11:53:47 UTC
Example:
template <class T> struct A {
};
template <class T>
A<T>
foo(A<T>& a) {
}
template
A<char>
foo(A<char>& a); // unresolved
int main() {
    A<char> a;
    foo(a);
    return 0;
}
Comment 1 nnnnnk 2009-03-03 12:23:56 UTC
Less than 20 unresolved ids on Boost 
Comment 2 nnnnnk 2012-05-23 09:39:48 UTC
fixed somewhere in time.