Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

librustc: Don't ICE when trying to subst regions in destructor call. #16131

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions src/librustc/middle/subst.rs
Original file line number Diff line number Diff line change
Expand Up @@ -584,9 +584,11 @@ impl<'a> TypeFolder for SubstFolder<'a> {
self.tcx().sess.span_bug(
span,
format!("Type parameter out of range \
when substituting in region {} (root type={})",
when substituting in region {} (root type={}) \
(space={}, index={})",
region_name.as_str(),
self.root_ty.repr(self.tcx())).as_slice());
self.root_ty.repr(self.tcx()),
space, i).as_slice());
}
}
}
Expand Down
3 changes: 3 additions & 0 deletions src/librustc/middle/trans/base.rs
Original file line number Diff line number Diff line change
Expand Up @@ -485,6 +485,9 @@ pub fn get_res_dtor(ccx: &CrateContext,
if !substs.types.is_empty() {
assert_eq!(did.krate, ast::LOCAL_CRATE);

// Since we're in trans we don't care for any region parameters
let ref substs = subst::Substs::erased(substs.types.clone());

let vtables = typeck::check::vtable::trans_resolve_method(ccx.tcx(), did.node, substs);
let (val, _) = monomorphize::monomorphic_fn(ccx, did, substs, vtables, None);

Expand Down
45 changes: 45 additions & 0 deletions src/test/run-pass/issue-15858.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
// Copyright 2012-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.

#![feature(unsafe_destructor)]

static mut DROP_RAN: bool = false;

trait Bar<'b> {
fn do_something(&mut self);
}

struct BarImpl<'b>;

impl<'b> Bar<'b> for BarImpl<'b> {
fn do_something(&mut self) {}
}


struct Foo<B>;

#[unsafe_destructor]
impl<'b, B: Bar<'b>> Drop for Foo<B> {
fn drop(&mut self) {
unsafe {
DROP_RAN = true;
}
}
}


fn main() {
{
let _x: Foo<BarImpl> = Foo;
}
unsafe {
assert_eq!(DROP_RAN, true);
}
}