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 - Template specialization annotation is absent
Summary: Template specialization annotation is absent
Status: NEW
Alias: None
Product: cnd
Classification: Unclassified
Component: Code Model (show other bugs)
Version: 8.1
Hardware: All All
: P3 normal (vote)
Assignee: petrk
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2017-03-09 09:08 UTC by Vladimir Kvashin
Modified: 2017-03-31 18:30 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 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.