blob: 17cdb2f9f766a5a6ac45fa90ab09438b7eaf79f6 [file] [log] [blame]
// PR c++/48446
// { dg-options "" }
template<typename T>
struct A
{
~A ();
T *operator-> () const;
};
struct B
{
typedef A <B> P;
static P foo (int);
};
struct C
{
typedef A<C> P;
static const int c = 80;
};
C::P bar ();
void
baz ()
{
char z[bar ()->c];
{
B::P m = B::foo (sizeof (z));
}
}