(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
lto/
pr89358_0.C
/* { dg-lto-do link } */
/* { dg-lto-options "-std=c++17"  } */
#include <map>

extern void test();

int main()
{
        std::map<int, int> m;
        test();
}