C2018: Generate class/struct from template

[DISABLE, INFORMATION , WARNING, ERROR]

Description

A class was instantiated from a template.

Example
  template<class S> struct A {

  
    S s;

  
  };

  
  A<int> a;  // information