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
/
initlist-deduce2.C
blob
dbf68a40c8567e45c9ed09f4f27a592a3b243f88
1
// Test for PR63149
2
// { dg-do compile { target c++11 } }
3
4
#include <initializer_list>
5
6
const auto r = { 1, 2, 3 };
7
using X = decltype(r);
8
using X = const std::initializer_list<int>;