diff options
Diffstat (limited to '')
-rw-r--r-- | src/test/ui/block-result/issue-5500.stderr | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/test/ui/block-result/issue-5500.stderr b/src/test/ui/block-result/issue-5500.stderr new file mode 100644 index 000000000..211a60528 --- /dev/null +++ b/src/test/ui/block-result/issue-5500.stderr @@ -0,0 +1,19 @@ +error[E0308]: mismatched types + --> $DIR/issue-5500.rs:2:5 + | +LL | fn main() { + | - expected `()` because of default return type +LL | &panic!() + | ^^^^^^^^^ expected `()`, found reference + | + = note: expected unit type `()` + found reference `&_` +help: consider removing the borrow + | +LL - &panic!() +LL + panic!() + | + +error: aborting due to previous error + +For more information about this error, try `rustc --explain E0308`. |