From 698f8c2f01ea549d77d7dc3338a12e04c11057b9 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 17 Apr 2024 14:02:58 +0200 Subject: Adding upstream version 1.64.0+dfsg1. Signed-off-by: Daniel Baumann --- src/test/ui/wf/wf-misc-methods-issue-28609.stderr | 55 +++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 src/test/ui/wf/wf-misc-methods-issue-28609.stderr (limited to 'src/test/ui/wf/wf-misc-methods-issue-28609.stderr') diff --git a/src/test/ui/wf/wf-misc-methods-issue-28609.stderr b/src/test/ui/wf/wf-misc-methods-issue-28609.stderr new file mode 100644 index 000000000..fc5898434 --- /dev/null +++ b/src/test/ui/wf/wf-misc-methods-issue-28609.stderr @@ -0,0 +1,55 @@ +error[E0515]: cannot return value referencing temporary value + --> $DIR/wf-misc-methods-issue-28609.rs:22:5 + | +LL | s.transmute_inherent(&mut 42) + | ^^^^^^^^^^^^^^^^^^^^^^^^^^--^ + | | | + | | temporary value created here + | returns a value referencing data owned by the current function + +error[E0515]: cannot return value referencing local variable `four` + --> $DIR/wf-misc-methods-issue-28609.rs:36:5 + | +LL | s.bomb = Some(&four); + | ----- `four` is borrowed here +LL | &s + | ^^ returns a value referencing data owned by the current function + +error[E0515]: cannot return value referencing local variable `four` + --> $DIR/wf-misc-methods-issue-28609.rs:43:5 + | +LL | s.bomb = Some(&four); + | ----- `four` is borrowed here +LL | &*s + | ^^^ returns a value referencing data owned by the current function + +error[E0515]: cannot return value referencing temporary value + --> $DIR/wf-misc-methods-issue-28609.rs:53:5 + | +LL | s << &mut 3 + | ^^^^^^^^^^- + | | | + | | temporary value created here + | returns a value referencing data owned by the current function + +error[E0515]: cannot return value referencing temporary value + --> $DIR/wf-misc-methods-issue-28609.rs:58:5 + | +LL | s.shl(&mut 3) + | ^^^^^^^^^^^-^ + | | | + | | temporary value created here + | returns a value referencing data owned by the current function + +error[E0515]: cannot return value referencing temporary value + --> $DIR/wf-misc-methods-issue-28609.rs:63:5 + | +LL | S2::shl(s, &mut 3) + | ^^^^^^^^^^^^^^^^-^ + | | | + | | temporary value created here + | returns a value referencing data owned by the current function + +error: aborting due to 6 previous errors + +For more information about this error, try `rustc --explain E0515`. -- cgit v1.2.3