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
/
initlist124.C
blob
45dcbb303e295b43650ba9f0ede17273eff74a60
1
// PR c++/100963
2
// { dg-do compile { target c++11 } }
3
4
#include <initializer_list>
5
6
struct B {
7
B(int) = delete;
8
template<class T> B(std::initializer_list<T>);
9
};
10
11
int main() {
12
B({0});
13
}