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
RTEMS: Add Cortex-M33 multilib
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
pr90338.C
blob
6944a40472583afd07aabd84f131ed150928b6fe
1
struct B {
2
B(); // This type is non-literal
3
void func();
4
};
5
6
template <class Class, void (Class::*Ptr)()>
7
void match();
8
9
template <class Any, Any Value>
10
void match();
11
12
void func() {
13
match<B, &B::func>();
14
}