1 // { dg-options -std=c++17 }
2 
3 #include <utility>
4 
main()5 int main()
6 {
7   std::pair x{42, 666};
8 }
9 
10