(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
warn/
anonymous-namespace-3.C
// 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" }