diff options
| author | bors <bors@rust-lang.org> | 2014-05-23 16:31:20 -0700 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2014-05-23 16:31:20 -0700 |
| commit | 44626874574db4040f3fc2964a35ddf50927ef1a (patch) | |
| tree | b07c0e44c549e4bec5a5176c38144676ebee5ba4 | |
| parent | 11aa731b387d1210e239e64aec8ee7e6db9e5faa (diff) | |
| parent | e6b23da5a25150ecf078d9c402b699c62541c9bd (diff) | |
| download | rust-44626874574db4040f3fc2964a35ddf50927ef1a.tar.gz rust-44626874574db4040f3fc2964a35ddf50927ef1a.zip | |
auto merge of #14317 : P1start/rust/lifetime-formatting, r=alexcrichton
This changes certain error messages about lifetimes so that they display lifetimes without an `&`. Fixes #10291.
| -rw-r--r-- | src/librustc/util/ppaux.rs | 2 | ||||
| -rw-r--r-- | src/test/compile-fail/issue-10291.rs | 19 |
2 files changed, 20 insertions, 1 deletions
diff --git a/src/librustc/util/ppaux.rs b/src/librustc/util/ppaux.rs index 087a4e58d49..2dff56d32d2 100644 --- a/src/librustc/util/ppaux.rs +++ b/src/librustc/util/ppaux.rs @@ -145,7 +145,7 @@ pub fn explain_region_and_span(cx: &ctxt, region: ty::Region) } pub fn bound_region_ptr_to_str(cx: &ctxt, br: BoundRegion) -> StrBuf { - bound_region_to_str(cx, "&", true, br) + bound_region_to_str(cx, "", false, br) } pub fn bound_region_to_str(cx: &ctxt, diff --git a/src/test/compile-fail/issue-10291.rs b/src/test/compile-fail/issue-10291.rs new file mode 100644 index 00000000000..71b98bb5f5a --- /dev/null +++ b/src/test/compile-fail/issue-10291.rs @@ -0,0 +1,19 @@ +// Copyright 2014 The Rust Project Developers. See the COPYRIGHT +// file at the top-level directory of this distribution and at +// http://rust-lang.org/COPYRIGHT. +// +// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or +// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license +// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your +// option. This file may not be copied, modified, or distributed +// except according to those terms. + +fn test<'x>(x: &'x int) { //~ NOTE the lifetime 'x as defined + drop::< <'z>|&'z int| -> &'z int>(|z| { + //~^ ERROR mismatched types + //~^^ ERROR cannot infer an appropriate lifetime + x + }); +} + +fn main() {} |
