C2018: Generate class/struct from template

[INFORMATION]

Description

A class was instantiated from a template.

Example
  template<class S> struct A {

  
    S s;

  
  };

  
  A<int> a;  // information