blob: 07506c9956fe4c7d2100a860392677903c43aef9 [file] [log] [blame]
// { dg-additional-options "-fmodules-ts -std=c++2a" }
export module foo;
// { dg-module-cmi foo }
struct tuple { int a, b, c;};
tuple maker ();
export inline int bob ()
{
auto [a, b, c] = maker ();
return a + b + c;
}