5 lines
86 B
C
5 lines
86 B
C
|
namespace StructuredBinding {
|
||
|
struct Q { int p, q; };
|
||
|
static auto [a, b] = Q();
|
||
|
}
|