我对以下编译器错误感到惊讶:
template <typename T> struct A { A(T t): t_{t} {} T t_; }; struct S { }; int main() { A<S> s{S{}}; }
错误是(与cl):
test.cpp:4:16: error: excess elements in struct initializer A(T t): t_{t} {} ^ test.cpp:15:10: note: in instantiation of member function 'A<S>::A' requested here A<S> s{S{}}; ^
GCC给出了类似的错误.
我会期望表达式t_ {t}尝试从t复制构造t_.由于S有一个隐式生成的拷贝构造函数,我不会指望这是一个问题.
有人可以解释这里发生了什么吗?