我对以下编译器错误感到惊讶:
template <typename T>
struct A
{
A(T t): t_{t} {}
T t_;
};
struct S
{
};
int main()
{
A<S> s{S{}};
}
错误是(带有clang):
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
有一个隐式生成的复制构造函数,我不认为这是一个问题。
有人可以解释这里发生了什么吗?