================
@@ -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)));
----------------
NeKon69 wrote:

I assume it is the intended beahvior to not add a note here?

https://github.com/llvm/llvm-project/pull/204124
_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to