blob: ce5745b25f0ccf1579feca16ae663ae503fe741a [file] [log] [blame]
// Test for the warning of exposing types from an anonymous namespace
// { dg-do compile }
//
#include <memory>
#include "anonymous-namespace-3.h"
struct B { std::auto_ptr<A> p; };
#line 10 "foo.C"
struct C // { dg-warning "has internal linkage" "" { target c++11 } }
// { dg-warning "uses the anonymous namespace" "" { target c++98_only } .-1 }
{
std::auto_ptr<A> p;
};
// { dg-prune-output "auto_ptr. is deprecated" }