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
Daily bump.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
diagnostic
/
parm1.C
blob
2e553e2d4c5a18b7e9ca4906f372d8297fbac2d9
1
// PR c++/44366
2
// While printing the operand of sizeof We were trying to print f as the
3
// scope of t, causing infinite recursion.
4
5
template <typename T>
6
void f(T t, int(*)[sizeof(t)])
7
{
8
struct A { void g() {
9
foo; // { dg-error "foo" }
10
} };
11
}