Skip to content

Instantly share code, notes, and snippets.

@asit-dhal
Created December 5, 2020 01:39
Show Gist options
  • Save asit-dhal/9abbe76aad9615d61c8acc50887e9e54 to your computer and use it in GitHub Desktop.
Save asit-dhal/9abbe76aad9615d61c8acc50887e9e54 to your computer and use it in GitHub Desktop.
int main()
{
B b(1, 'a', 'b', 'e');
auto& [e1, e2, e3, e4] =b;
e1 = 100;
e2 = 'k';
e3 = 'l';
e4 = 'm';
assert(100 == b.a);
assert('k' == b.c);
assert('l' == b.d);
assert('m' == b.e);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment