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 270031

Summary: Template specialization annotation is absent
Product: cnd Reporter: Vladimir Kvashin <vkvashin>
Component: Code ModelAssignee: petrk
Status: NEW ---    
Severity: normal    
Priority: P3    
Version: 8.1   
Hardware: All   
OS: All   
Issue Type: DEFECT Exception Reporter:

Description Vladimir Kvashin 2017-03-09 09:08:24 UTC
Sometimes generic template looks like the following (ProgramStateTrait.h:34)

template <typename T> struct ProgramStatePartialTrait;

And then it is specialized many times.

If it looked like 
template <typename T> struct ProgramStatePartialTrait {};
IDE would work perfectly well.

But in the case above it does not show specialization annotation.
This is very inconvenient.