comparison gcc/testsuite/g++.dg/cpp1z/decomp-constexpr1.C @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children 84e7813d76e9
comparison
equal deleted inserted replaced
68:561a7518be6b 111:04ced10e8804
1 // Test for reference address comparison in constant expression.
2 // { dg-options -std=c++17 }
3
4 int i[2];
5 struct A { int i, j; } a;
6
7 void f()
8 {
9 {
10 auto& [ x, y ] = i;
11 static_assert (&x == &i[0]);
12 }
13
14 {
15 auto& [ x, y ] = a;
16 static_assert (&x == &a.i && &y != &a.i);
17 }
18 }