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
2014-01-30 Alangi Derick <alangiderick@gmail.com>
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
template
/
new5.C
blob
a2c560181cfac0230cc3448024b365829d4b2949
1
// PR c++/27210
2
3
template <class foo> class junk {
4
void bar(int a)
5
{
6
unsigned char *c = new unsigned char[a*sizeof(foo)];
7
}
8
};
9