aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/lto/pr89358_0.C
blob: 328c60c2fb18e7276e82c3f05e98d3417f567ec2 (plain)
1
2
3
4
5
6
7
8
9
10
11
/* { dg-lto-do link } */
/* { dg-lto-options "-std=c++17"  } */
#include <map>

extern void test();

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