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
/
constexpr-ptrcomp1.C
blob
2eee1b022e302093773fee5412786fdb2cd1ffdd
1
// PR c++/65509
2
// { dg-do compile { target c++11 } }
3
4
const int i1 = 1;
5
const int i2 = 2;
6
7
#define SA(X) static_assert (X,#X)
8
SA(&i1 != &i2);