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 159328

Summary: Unresolved static cast to template
Product: cnd Reporter: nnnnnk <nnnnnk>
Component: Code ModelAssignee: nnnnnk <nnnnnk>
Status: RESOLVED FIXED    
Severity: blocker    
Priority: P3    
Version: 6.x   
Hardware: Sun   
OS: All   
Issue Type: DEFECT Exception Reporter:

Description nnnnnk 2009-02-27 15:00:22 UTC
Example:
template<class T>
struct A {
    A(int) {        
    }
    int bar() {
    }
};
void foo() {
    static_cast<A<int> >(0).bar();
}
Comment 1 nnnnnk 2009-03-03 12:25:50 UTC
Less than 20 unresolved ids on Boost 
Comment 2 Vladimir Voskresensky 2010-11-03 19:08:14 UTC
the same with reinterpret_cast (quite a few in clucene)