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 235446

Summary: regression in inaccuracy tests
Product: cnd Reporter: soldatov <soldatov>
Component: Code ModelAssignee: petrk
Status: NEW ---    
Severity: normal Keywords: REGRESSION
Priority: P3    
Version: 7.4   
Hardware: All   
OS: All   
Issue Type: DEFECT Exception Reporter:

Description soldatov 2013-09-03 09:37:11 UTC
in latest build IDE highlights "value" as a unresolved identifier

typedef unsigned char T;
template<typename T = T> struct X0 { };
template<> struct X0<unsigned char> { static const bool value = true; };
int array0[X0<>::value? 1 : -1];

int main() {
    return 0;
}
Comment 1 Vladimir Voskresensky 2014-11-20 11:51:30 UTC
confirmed. value is HLed as template-based unresolved