blob: b4e39b6f928812ff4ada38862cafed47b8b4c738 (
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
|
// PR c++/91353 - P1331R2: Allow trivial default init in constexpr contexts.
// { dg-do compile { target c++20 } }
// Test basic use.
struct S {
int i;
constexpr S(bool b) {
if (b)
i = 42;
}
};
constexpr S s1(true);
constexpr S s2(false); // { dg-error "not a constant expression" }
constexpr int
fn1 (int x)
{
int a;
a = 5;
return x + a;
}
static_assert (fn1 (2) == 7);
constexpr int
fn2 (int x)
{
const int a; // { dg-error "uninitialized .const a." }
constexpr int b; // { dg-error "uninitialized .const b." }
return x;
}
constexpr int
fn3 (int x)
{
int a; // { dg-message ".int a. is not const" }
return x + a; // { dg-error "the value of .a. is not usable in a constant expression" }
}
constexpr int a = fn3 (5); // { dg-message "in .constexpr. expansion of" }
constexpr int
fn4 ()
{
struct S { int a = -5; int b; } s;
return s.a;
}
static_assert (fn4 () == -5);
constexpr int
fn5 ()
{
struct S { int a = 9; int b; } s;
return s.b; // { dg-error "accessing uninitialized member" }
}
constexpr int b = fn5 (); // { dg-message "in .constexpr. expansion of" }
constexpr int
fn6 ()
{
int a;
return 42;
}
static_assert (fn6 () == 42);
constexpr int
fn7 (bool b)
{
int a; // { dg-message ".int a. is not const" }
if (b)
a = 42;
return a; // { dg-error "the value of .a. is not usable" }
}
static_assert (fn7 (true) == 42);
static_assert (fn7 (false) == 42); // { dg-error "non-constant condition" }
// { dg-message "in .constexpr. expansion of" "" { target *-*-* } .-1 }
constexpr int
fn8 (int n)
{
int r;
switch (n)
{
case 1:
r = n;
return r;
case 42:
r = n;
return r;
}
}
static_assert (fn8 (1) == 1);
static_assert (fn8 (42) == 42);
|