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
Merged revisions 208012,208018-208019,208021,208023-208030,208033,208037,208040-20804...
[official-gcc.git]
/
main
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
constexpr-static7.C
blob
272ebd901d438cf595a721490f6181949525a08d
1
// PR c++/48945
2
// { dg-do compile { target c++11 } }
3
4
struct A {
5
static constexpr bool is();
6
static constexpr bool is_not();
7
};
8
9
constexpr bool A::is() { return true; }
10
constexpr bool A::is_not() const { return true; } // { dg-error "static" }