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
Wattributes-10.c: Add -fno-common option on hppa*-*-hpux*.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.old-deja
/
g++.robertl
/
eb7.C
blob
4785305ff5308d25d82cfab5153d1ecf20808865
1
// { dg-do assemble }
2
#include <vector>
3
4
class T
5
{
6
public:
7
T();
8
9
};
10
11
std::vector <T> tp;
12
13
void f()
14
{
15
tp.insert(tp.begin(), 10 , T());
16
}