diff options
| author | Tim <t.diekmann.3dv@gmail.com> | 2019-03-03 23:43:46 +0100 |
|---|---|---|
| committer | Tim <t.diekmann.3dv@gmail.com> | 2019-03-03 23:43:46 +0100 |
| commit | 60a649ef6ecf905253507997211ebd081f298f24 (patch) | |
| tree | a788e1b2745415e698fea8f7daa686a64ee92758 | |
| parent | 797d8ea4789c64bb20869fa7fb0c15e2c09432cf (diff) | |
| download | rust-60a649ef6ecf905253507997211ebd081f298f24.tar.gz rust-60a649ef6ecf905253507997211ebd081f298f24.zip | |
Add .nll.stderr output
| -rw-r--r-- | src/test/ui/consts/const-ptr-nonnull.nll.stderr | 25 | ||||
| -rw-r--r-- | src/test/ui/consts/const-ptr-unique.nll.stderr | 14 |
2 files changed, 39 insertions, 0 deletions
diff --git a/src/test/ui/consts/const-ptr-nonnull.nll.stderr b/src/test/ui/consts/const-ptr-nonnull.nll.stderr new file mode 100644 index 00000000000..6977e7fdc11 --- /dev/null +++ b/src/test/ui/consts/const-ptr-nonnull.nll.stderr @@ -0,0 +1,25 @@ +error[E0716]: temporary value dropped while borrowed + --> $DIR/const-ptr-nonnull.rs:4:37 + | +LL | let x: &'static NonNull<u32> = &(NonNull::dangling()); + | --------------------- ^^^^^^^^^^^^^^^^^^^^^ creates a temporary which is freed while still in use + | | + | type annotation requires that borrow lasts for `'static` +... +LL | } + | - temporary value is freed at the end of this statement + +error[E0716]: temporary value dropped while borrowed + --> $DIR/const-ptr-nonnull.rs:9:37 + | +LL | let x: &'static NonNull<u32> = &(non_null.cast()); + | --------------------- ^^^^^^^^^^^^^^^^^ creates a temporary which is freed while still in use + | | + | type annotation requires that borrow lasts for `'static` +LL | //~^ ERROR borrowed value does not live long enough +LL | } + | - temporary value is freed at the end of this statement + +error: aborting due to 2 previous errors + +For more information about this error, try `rustc --explain E0716`. diff --git a/src/test/ui/consts/const-ptr-unique.nll.stderr b/src/test/ui/consts/const-ptr-unique.nll.stderr new file mode 100644 index 00000000000..b201994c894 --- /dev/null +++ b/src/test/ui/consts/const-ptr-unique.nll.stderr @@ -0,0 +1,14 @@ +error[E0716]: temporary value dropped while borrowed + --> $DIR/const-ptr-unique.rs:8:33 + | +LL | let x: &'static *mut u32 = &(unique.as_ptr()); + | ----------------- ^^^^^^^^^^^^^^^^^ creates a temporary which is freed while still in use + | | + | type annotation requires that borrow lasts for `'static` +LL | //~^ ERROR borrowed value does not live long enough +LL | } + | - temporary value is freed at the end of this statement + +error: aborting due to previous error + +For more information about this error, try `rustc --explain E0716`. |
