Skip to content

Commit 5ff5594

Browse files
committed
Auto merge of #28321 - nikomatsakis:issue-27616, r=pnkfelix
Fixes #27616. r? @pnkfelix
2 parents 98eeded + 01de381 commit 5ff5594

File tree

2 files changed

+35
-11
lines changed

2 files changed

+35
-11
lines changed

src/librustc_borrowck/borrowck/gather_loans/mod.rs

+1-11
Original file line numberDiff line numberDiff line change
@@ -364,17 +364,7 @@ impl<'a, 'tcx> GatherLoanCtxt<'a, 'tcx> {
364364

365365
ty::ReFree(ref fr) => fr.scope,
366366

367-
ty::ReStatic => {
368-
// If we get here, an error must have been
369-
// reported in
370-
// `lifetime::guarantee_lifetime()`, because
371-
// the only legal ways to have a borrow with a
372-
// static lifetime should not require
373-
// restrictions. To avoid reporting derived
374-
// errors, we just return here without adding
375-
// any loans.
376-
return;
377-
}
367+
ty::ReStatic => self.item_ub,
378368

379369
ty::ReEmpty |
380370
ty::ReLateBound(..) |
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
// Copyright 2015 The Rust Project Developers. See the COPYRIGHT
2+
// file at the top-level directory of this distribution and at
3+
// http://rust-lang.org/COPYRIGHT.
4+
//
5+
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6+
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8+
// option. This file may not be copied, modified, or distributed
9+
// except according to those terms.
10+
11+
use std::mem;
12+
13+
fn leak<T>(mut b: Box<T>) -> &'static mut T {
14+
// isn't this supposed to be safe?
15+
let inner = &mut *b as *mut _;
16+
mem::forget(b);
17+
unsafe { &mut *inner }
18+
}
19+
20+
fn evil(mut s: &'static mut String)
21+
{
22+
// create alias
23+
let alias: &'static mut String = s;
24+
let inner: &str = &alias;
25+
// free value
26+
*s = String::new(); //~ ERROR cannot assign
27+
let _spray = "0wned".to_owned();
28+
// ... and then use it
29+
println!("{}", inner);
30+
}
31+
32+
fn main() {
33+
evil(leak(Box::new("hello".to_owned())));
34+
}

0 commit comments

Comments
 (0)