blob: 71abe846dbf5a221668f3629abe705c0ea121f63 [file] [log] [blame]
// PR c++/70822
// { dg-do compile { target c++14 } }
struct a
{
static int b;
};
template <typename>
void
foo ()
{
&(a::b);
}