We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91fc35b commit 45aeebeCopy full SHA for 45aeebe
lldb/test/API/lang/cpp/operators/main.cpp
@@ -125,6 +125,7 @@ int main(int argc, char **argv) {
125
C *c2 = new C();
126
C *c3 = new C[3];
127
128
+ // clang-format off
129
//% self.expect("expr c->dummy", endstr=" 2324\n")
130
//% self.expect("expr c->*2", endstr=" 2\n")
131
//% self.expect("expr c + 44", endstr=" 44\n")
@@ -176,6 +177,7 @@ int main(int argc, char **argv) {
176
177
//% self.expect("expr delete[] c3; side_effect", endstr=" = 2\n")
178
//% self.expect("image lookup -n operator()", substrs=["C::operator()(int)"])
179
//% self.expect("image lookup -n C::operator()", substrs=["C::operator()(int)"])
180
+ // clang-format on
181
delete c2;
182
delete[] c3;
183
return 0;
0 commit comments