Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2319c28 + d7849bc commit 3e8f62fCopy full SHA for 3e8f62f
1 file changed
cpp/ql/test/library-tests/ir/ssa/ssa.cpp
@@ -291,7 +291,7 @@ struct A {
291
Point *NewAliasing(int x) {
292
Point* p = new Point;
293
Point* q = new Point;
294
- int j = new A(new A(x))->i;
+ int j = (new A(new A(x)))->i;
295
A* a = new A;
296
return p;
297
}
@@ -310,4 +310,4 @@ class ThisAliasTest {
310
void setX(int arg) {
311
this->x = arg;
312
313
-};
+};
0 commit comments