zircon-temporary-objects.cpp
2.46 KB
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
99
100
101
102
103
104
105
106
107
108
// RUN: %check_clang_tidy %s zircon-temporary-objects %t -- \
// RUN: -config="{CheckOptions: [{key: zircon-temporary-objects.Names, value: 'Foo;NS::Bar'}]}" \
// RUN: -header-filter=.*
// Should flag instances of Foo, NS::Bar.
class Foo {
public:
Foo() = default;
Foo(int Val) : Val(Val){};
private:
int Val;
};
namespace NS {
class Bar {
public:
Bar() = default;
Bar(int Val) : Val(Val){};
private:
int Val;
};
} // namespace NS
class Bar {
public:
Bar() = default;
Bar(int Val) : Val(Val){};
private:
int Val;
};
int func(Foo F) { return 1; };
int main() {
Foo F;
Foo *F2 = new Foo();
new Foo();
Foo();
// CHECK-MESSAGES: :[[@LINE-1]]:3: warning: creating a temporary object of type 'Foo' is prohibited
Foo F3 = Foo();
// CHECK-MESSAGES: :[[@LINE-1]]:12: warning: creating a temporary object of type 'Foo' is prohibited
Bar();
NS::Bar();
// CHECK-MESSAGES: :[[@LINE-1]]:3: warning: creating a temporary object of type 'NS::Bar' is prohibited
int A = func(Foo());
// CHECK-MESSAGES: :[[@LINE-1]]:16: warning: creating a temporary object of type 'Foo' is prohibited
Foo F4(0);
Foo *F5 = new Foo(0);
new Foo(0);
Foo(0);
// CHECK-MESSAGES: :[[@LINE-1]]:3: warning: creating a temporary object of type 'Foo' is prohibited
Foo F6 = Foo(0);
// CHECK-MESSAGES: :[[@LINE-1]]:12: warning: creating a temporary object of type 'Foo' is prohibited
Bar(0);
NS::Bar(0);
// CHECK-MESSAGES: :[[@LINE-1]]:3: warning: creating a temporary object of type 'NS::Bar' is prohibited
int B = func(Foo(0));
// CHECK-MESSAGES: :[[@LINE-1]]:16: warning: creating a temporary object of type 'Foo' is prohibited
}
namespace NS {
void f() {
Bar();
// CHECK-MESSAGES: :[[@LINE-1]]:3: warning: creating a temporary object of type 'NS::Bar' is prohibited
Bar(0);
// CHECK-MESSAGES: :[[@LINE-1]]:3: warning: creating a temporary object of type 'NS::Bar' is prohibited
}
} // namespace NS
template <typename Ty>
Ty make_ty() { return Ty(); }
// CHECK-MESSAGES: :[[@LINE-1]]:23: warning: creating a temporary object of type 'Foo' is prohibited
// CHECK-MESSAGES: :[[@LINE-2]]:23: warning: creating a temporary object of type 'NS::Bar' is prohibited
void ty_func() {
make_ty<Bar>();
make_ty<NS::Bar>();
make_ty<Foo>();
}
// Inheriting the disallowed class does not trigger the check.
class Bingo : NS::Bar {}; // Not explicitly disallowed
void f2() {
Bingo();
}
template <typename Ty>
class Quux : Ty {};
void f3() {
Quux<NS::Bar>();
Quux<Bar>();
}