blob: b0c91d5ef97ab72667669dabb5485a27c9aaeef8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
// PR c++/98122
// { dg-do compile { target c++20 } }
union V { int a; char b; };
union W { int a; int b; };
constexpr bool
bar ()
{
V f { .b = 42 };
constexpr auto m = &V::a;
return (f.*m) == 42; // { dg-error "accessing 'V::a' member instead of initialized 'V::b' member in constant expression" }
}
constexpr bool
baz ()
{
W f { .b = 42 };
constexpr auto m = &W::b;
return (f.*m) == 42;
}
static_assert (bar (), ""); // { dg-error "non-constant condition for static assertion" }
// { dg-message "in .constexpr. expansion" "" { target *-*-* } .-1 }
static_assert (baz (), "");
|