Skip to content

Commit

Permalink
Add NLL test error output
Browse files Browse the repository at this point in the history
  • Loading branch information
varkor committed Mar 11, 2019
1 parent 36eb6a3 commit cfaed80
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/test/ui/issues/issue-26619.nll.stderr
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
error[E0515]: cannot return value referencing function parameter
--> $DIR/issue-26619.rs:7:76
|
LL | for s in vec!["1|2".to_string()].into_iter().filter_map(|ref line| self.make_entry(line)) {
| -------- ^^^^^^^^^^^^^^^^^^^^^ returns a value referencing data owned by the current function
| |
| function parameter borrowed here

error: aborting due to previous error

For more information about this error, try `rustc --explain E0515`.

0 comments on commit cfaed80

Please sign in to comment.