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 12, 2019
1 parent 57c6a0b commit d17da3a
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/test/ui/issues/issue-26619.nll.stderr
@@ -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 d17da3a

Please sign in to comment.