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
PR c++/85765 - SFINAE and non-type default template arg.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
constexpr-initlist5.C
blob
901510e106711822d108de62cca20fb1089643b4
1
// PR c++/50024
2
// { dg-do compile { target c++11 } }
3
4
template< class T >
5
struct Container
6
{
7
Container(){
8
int* ptr = new int{};
9
}
10
};
11
12
int main() {
13
Container< int > c;
14
}
15