Skip to content

Commit

Permalink
add regression test for rust-lang#48071
Browse files Browse the repository at this point in the history
  • Loading branch information
nikomatsakis committed Jul 25, 2018
1 parent d9afd2b commit 2acc3e7
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions src/test/ui/nll/relate_tys/issue-48071.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
// Copyright 2018 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.

// Regression test for #48071. This test used to ICE because -- in
// the leak-check -- it would pass since we knew that the return type
// was `'static`, and hence `'static: 'a` was legal even for a
// placeholder region, but in NLL land it would fail because we had
// rewritten `'static` to a region variable.
//
// compile-pass

#![allow(warnings)]
#![feature(dyn_trait)]
#![feature(nll)]

trait Foo {
fn foo(&self) { }
}

impl Foo for () {
}

type MakeFooFn = for<'a> fn(&'a u8) -> Box<dyn Foo + 'a>;

fn make_foo(x: &u8) -> Box<dyn Foo + 'static> {
Box::new(())
}

fn main() {
let x: MakeFooFn = make_foo as MakeFooFn;
}

0 comments on commit 2acc3e7

Please sign in to comment.