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
Fortran: Fix PR 47485.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
auto53.C
blob
68b408e99ebc0c689d46b4f9e2e9eea6b0aa9cf7
1
// PR c++/63508
2
// { dg-do compile { target c++11 } }
3
4
template <typename T> class c {
5
void mf() { }
6
using m = void (c::*) ();
7
public:
8
c() {
9
auto x = m{&c::mf};
10
}
11
};
12
13
int main() { c<int> o{}; }