下面的代码使应用程序崩溃或打印乱码。如果基类的初始化被替换为str_int{ string{V}, 0}
then 它工作正常。似乎可以与某些在线编译器一起正常工作。
#include <iostream>
#include <utility>
using namespace std;
using str_int = pair<string, int>;
template< const char* V >
struct C : public str_int
{
C() : str_int{ V, 0} {}
};
constexpr const char str[] = "abc";
int main()
{
// works fine
str_int si{str, 0};
cout << si.first;
// crashes the application or prints gibberish
C<str> c;
cout << c.first;
}