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
/
ref-bind6.C
blob
c85a5cfb36f33faabb4241ba615ff06ee4b129f8
1
// PR c++/91889 - follow-up fix for DR 2352.
2
// { dg-do compile { target c++11 } }
3
4
template <typename T> struct A {
5
A(const T &);
6
};
7
8
struct {
9
int *m;
10
} a;
11
12
void fn1() { A<const int *>(a.m); }