repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
* arm.md (stack_tie): New insn. Use an idiom that the alias code
[official-gcc.git]
/
gcc
/
testsuite
/
g++.old-deja
/
g++.robertl
/
eb55.C
blob
0ab10d5d424bb4eb6957274c5ca7882b4e38b778
1
// Build don't link:
2
// Since the constructor is in streambuf.h, additional diagnostics are
3
// produced, which are not really supported in the old-deja framework
4
5
#include <sstream>
6
7
void
8
t( char* buf )
9
{
10
std::istrstream str = buf; //ERROR - inaccessible copy constructor
11
}
12