================
@@ -1,17 +1,24 @@
// RUN: rm -rf %t
// RUN: split-file %s %t
// RUN: %clang_cc1 -fsyntax-only
-Wlifetime-safety-cross-tu-misplaced-lifetimebound -Wno-dangling -I%t -verify
%t/cross.cpp
+// RUN: %clang_cc1 -fsyntax-only
-Wlifetime-safety-cross-tu-misplaced-lifetimebound -Wno-dangling -I%t
-fdiagnostics-parseable-fixits %t/cross.cpp 2>&1 | FileCheck %s
+// RUN: %clang_cc1 -Wlifetime-safety-cross-tu-misplaced-lifetimebound
-Wno-dangling -I%t -fixit %t/cross.cpp
+// RUN: %clang_cc1 -fsyntax-only
-Wlifetime-safety-cross-tu-misplaced-lifetimebound -Wno-dangling -I%t -Werror
%t/cross.cpp
//--- cross.h
struct HeaderObj {
~HeaderObj() {}
};
-HeaderObj &header_param(HeaderObj &obj); // expected-warning {{'lifetimebound'
attribute on this definition is not visible to callers in other translation
units; add it to the declaration instead}}
+HeaderObj &header_param(HeaderObj & // expected-warning {{'lifetimebound'
attribute on this definition is not visible to callers in other translation
units; add it to the declaration instead}}
+ obj // CHECK:
fix-it:"{{.*}}cross.h":{[[#]]:{{[0-9]+}}-[[#]]:{{[0-9]+}}}:"
{{\[\[}}clang::lifetimebound{{\]\]}}"
+);
struct HeaderS {
HeaderObj data;
- HeaderObj &header_this(); // expected-warning {{'lifetimebound' attribute on
this definition is not visible to callers in other translation units; add it to
the declaration instead}}
+ HeaderObj &header_this(
+ ); // expected-warning {{'lifetimebound' attribute on this definition is
not visible to callers in other translation units; add it to the declaration
instead}}
+ // CHECK: fix-it:"{{.*}}cross.h":{[[#]]:{{[0-9]+}}-[[#]]:{{[0-9]+}}}:"
{{\[\[}}clang::lifetimebound{{\]\]}}"
----------------
NeKon69 wrote:
I don't quite get this, does the suggestion show up on the next line?
https://github.com/llvm/llvm-project/pull/199149
_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits