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
/
auto38.C
blob
070a39b9e3e18dc326a2091e0b34c39dd1ae64fc
1
// PR c++/57183
2
// { dg-do compile { target c++11 } }
3
// { dg-options "-Wunused-variable" }
4
5
constexpr float PI_0 = 3.1415926F;
6
constexpr auto PI_1 = 3.1415926F;
7
const float PI_2 = 3.1415926F;
8
const auto PI_3 = 3.1415926F;