blob: 0ed16ff18cdd0437102bdc2f97a870105702ec3a (
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
|
/* { dg-options "-fdiagnostics-show-caret" } */
/* Verify that we emit a "return *this;" fix-it hint for
a missing return in an assignment operator. */
struct s1 {
s1& operator=(const s1&) { } // { dg-warning "no return statement in function returning non-void" }
/* { dg-begin-multiline-output "" }
s1& operator=(const s1&) { }
^
return *this;
{ dg-end-multiline-output "" } */
};
/* Likewise for +=. */
struct s2 {
s2& operator+=(const s2&) {} // { dg-warning "no return statement in function returning non-void" }
/* { dg-begin-multiline-output "" }
s2& operator+=(const s2&) {}
^
return *this;
{ dg-end-multiline-output "" } */
};
/* No warning for "void" return. */
struct s3 {
void operator=(const s3&) { }
};
/* We shouldn't issue the fix-it hint if the return type isn't right. */
struct s4 {
int operator=(int) { } // { dg-warning "no return statement in function returning non-void" }
/* { dg-begin-multiline-output "" }
int operator=(int) { }
^
{ dg-end-multiline-output "" } */
};
/* Example of a multi-line fix-it hint. */
struct s5 {
int i;
s5& operator=(const s5& z) {
i = z.i;
} // { dg-warning "no return statement in function returning non-void" }
/* { dg-begin-multiline-output "" }
i = z.i;
+ return *this;
}
^
{ dg-end-multiline-output "" } */
};
/* Example of a multi-line fix-it hint with other statements. */
extern void log (const char *);
struct s6 {
int i;
s6& operator=(const s6& z) {
log ("operator=\n");
i = z.i;
} // { dg-warning "no return statement in function returning non-void" }
/* { dg-begin-multiline-output "" }
i = z.i;
+ return *this;
}
^
{ dg-end-multiline-output "" } */
};
/* Another example of a multi-line fix-it hint with other statements. */
struct s7 {
int i;
s7& operator=(const s6& z) {
if (z.i)
log ("operator=\n");
else
log ("operator=\n");
i = z.i;
} // { dg-warning "no return statement in function returning non-void" }
/* { dg-begin-multiline-output "" }
i = z.i;
+ return *this;
}
^
{ dg-end-multiline-output "" } */
};
|