Fortran: Fix PR 47485.
[gcc.git] / gcc / testsuite / g++.dg / cpp0x / ref-bind6.C
blobc85a5cfb36f33faabb4241ba615ff06ee4b129f8
1 // PR c++/91889 - follow-up fix for DR 2352.
2 // { dg-do compile { target c++11 } }
4 template <typename T> struct A {
5   A(const T &);
6 };
8 struct {
9   int *m;
10 } a;
12 void fn1() { A<const int *>(a.m); }