Skip to content
Snippets Groups Projects
Commit ea9d80e7 authored by Jorrit Fahlke's avatar Jorrit Fahlke
Browse files

[tuplestest] Make sure reference-to-non-const members of const tuples are

assignable.

[[Imported from SVN: r6314]]
parent 138c902f
No related branches found
No related tags found
No related merge requests found
......@@ -130,6 +130,15 @@ int copyTest()
int referenceTest()
{
// make sure const tuples of references have assignable members, as long as
// the member references a non-const type
{
int n = 0;
const tuple<int&> t(n);
get<0>(t) = 777;
assert(n == 777);
}
int k=5;
int& kr(k);
kr=20;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment