Skip to content

Instantly share code, notes, and snippets.

@asit-dhal
Created December 4, 2020 21:36
Show Gist options
  • Save asit-dhal/12726c676a8fe9843ed3b078c8892d0c to your computer and use it in GitHub Desktop.
Save asit-dhal/12726c676a8fe9843ed3b078c8892d0c to your computer and use it in GitHub Desktop.
int main()
{
B b(1, 'a', 'b', 'e');
auto [e1, e2, e3, e4] = b;
assert(e1 == b.a);
assert(e2 == b.c);
assert(e3 == b.d);
assert(e4 == b.e);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment