repo.or.cz
/
gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fortran: Fix PR 47485.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
torture
/
pr82084.C
blob
1fbb4f01cfe24b42b06fda3dfbd8ad5b6f7ca185
1
// { dg-do compile }
2
// { dg-skip-if "requires hosted libstdc++ for string" { ! hostedlib } }
3
4
#include <string>
5
int main()
6
{
7
wchar_t strs[4][2]= { L"A", L"B", L"C" , L"D"};
8
std::wstring ss(strs[0]);
9
return 0;
10
}