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
/
cpp0x
/
static_assert10.C
blob
5ff085487cc552aa86745624f42f07482bbb0f0d
1
// PR c++/60254
2
// { dg-do compile { target c++11 } }
3
4
template<typename T> bool foo(T)
5
{
6
int i;
7
static_assert(foo(i), "Error"); // { dg-error "non-constant condition|not usable|non-.constexpr." }
8
return true;
9
}