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
/
nsdmi8.C
blob
f89bec6d16707e4b033eb3b57ba0ce1ef486e805
1
// PR c++/55670
2
// { dg-do compile { target c++11 } }
3
4
template <class T> using F = T;
5
struct X {
6
F<void ()>* fp = nullptr;
7
};
8
int main () { return 0; }