R>auto&& [x, _0, _1, _2] = get_some_struct(); R>
struct A{int i; int j;int k;}; A f() { return {1,2,3}; } int main() { auto [x, _, _] = f(); }