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
/
sizeof1.C
blob
45a7db48c926cc94bf1ea3dbf7ddac0ea664346b
1
// Test use of `sizeof' as a template parameter.
2
// Origin: smacdonald@seimac.com
3
4
// { dg-do compile }
5
6
template <unsigned I> struct A { static char *value; };
7
8
template <typename SizeType>
9
struct B
10
{
11
char * f() const
12
{
13
return (A<sizeof(void *)>::value);
14
}
15
};