White RoomNEW

Structured bindings with const

What is the result of of decltype(a) in the following?

std::pair<int, double> p{1, 2.0};
const auto& [a, b] = p;