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++/81917 - ICE with void_t and partial specialization.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
template
/
static8.C
blob
f8229fd827e4684bc7c519face82b7994d34f417
1
// PR c++/17585
2
3
template <void (*p)(void)> struct S03 {};
4
class C03 {
5
public:
6
static void f(void) {}
7
void g(void) { S03<&f> s03; }
8
};