blob: df2d82abcbc101ee6ac5951bea3117cf7b680882 [file] [log] [blame]
// { dg-additional-options -fmodule-header }
// { dg-module-cmi {} }
struct A {
int a, b, c;
};
namespace {
A d = { 1, 2, 3 };
auto [a, b, c] = d;
}