================
@@ -1250,6 +1250,16 @@ void conditional_operator_lifetimebound_nested_deep(bool
cond) {
(void)*p; // expected-note 4 {{later used here}}
}
+void simpleparen() {
+ MyObj* p;
+ {
+ MyObj a;
+ MyObj* b = &a; // expected-warning {{local variable 'a' does not live
long enough}}
+ p = (((b)));
----------------
usx95 wrote:
Consider adding a FIXME to add a note for the innermost 'b' here. The outer
parens must be ignored but I would expect it behave same as `p = b;`
https://github.com/llvm/llvm-project/pull/204124
_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits