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
/
nsdmi13.C
blob
2751da3b5cf57a8f97d0a97e9d0e3d6cbcacedc1
1
// PR c++/79796
2
// { dg-do compile { target c++11 } }
3
4
struct A
5
{
6
A* p = this;
7
};
8
9
void foo()
10
{
11
A a;
12
a = A({});
13
}