comparison gcc/testsuite/g++.dg/cpp1y/paren4.C @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
comparison
equal deleted inserted replaced
68:561a7518be6b 111:04ced10e8804
1 // PR c++/70822
2 // { dg-do compile { target c++14 } }
3
4 struct a
5 {
6 static int b;
7 };
8
9 template <typename>
10 void
11 foo ()
12 {
13 &(a::b);
14 }