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
Fortran: Fix PR 47485.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
other
/
error10.C
blob
33fbee5687effe104f00396c188546d5dbedf29a
1
// PR c++/21930
2
// Test case by Volker Reichelt
3
// { dg-do compile }
4
5
template<int> struct A {};
6
7
template<int N>
8
void foo(const A<N> &a)
9
{ -A<N>(a); } // { dg-error "operand type is 'A<0>'" }
10
11
void bar()
12
{
13
foo(A<0>()); // { dg-message "required from here" }
14
}