为什么 __declspec(novtable) 不能在模板专业化上工作?

Why doesn't __declspec(novtable) work on a template specialization?

我有一个通用可调用的基础 class,我正在标记 __declspec(novtable):

template<class F> struct callable;
template<class R, class... T>
struct __declspec(novtable) callable<R(T...)>
{ virtual R operator()(T...) volatile { return R(); } };

但不知何故这会 而不是 错误 it's supposed to:

int main()
{
        auto temp = new callable<void()>();
        temp->operator()();
}

为什么 novtable 不起作用?

显然 Visual C++ 查看模板上的 __declspec(novtable) ,而不是它的专业化
这对我来说没有意义(这是一个错误吗?),但“解决方案”是这样写的:

template<class F> struct __declspec(novtable) callable;