comparison gcc/testsuite/g++.dg/cpp0x/ref-bind6.C @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +0900
parents
children
comparison
equal deleted inserted replaced
131:84e7813d76e9 145:1830386684a0
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); }