blob: 067a6352efede974e8f7559c30796a10ad70a8ad [file] [log] [blame]
// Build don't link:
// Copyright (C) 1999 Free Software Foundation
// by Alexandre Oliva <oliva@dcc.unicamp.br>
// simplified from bug report by Andrey Slepuhin <pooh@msu.ru>
template <typename A, int* P> struct X;
int a;
template <typename A>
struct X<A,&a> {};
int b;
template <typename A>
struct X<A,&b> {};
X<int,&a> x;