2014-11-03 20:52:52 -06:00
|
|
|
// 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.
|
|
|
|
|
|
|
|
// Test interaction between unboxed closure sugar and region
|
|
|
|
// parameters (should be exactly as if angle brackets were used
|
|
|
|
// and regions omitted).
|
|
|
|
|
2015-01-05 00:36:00 -06:00
|
|
|
#![feature(unboxed_closures)]
|
2014-11-03 20:52:52 -06:00
|
|
|
#![allow(dead_code)]
|
|
|
|
|
2015-01-06 16:33:42 -06:00
|
|
|
use std::marker;
|
2014-11-03 20:52:52 -06:00
|
|
|
|
2015-01-12 09:27:25 -06:00
|
|
|
trait Foo<'a,T> {
|
|
|
|
type Output;
|
|
|
|
fn dummy(&'a self) -> &'a (T,Self::Output);
|
2014-11-03 20:52:52 -06:00
|
|
|
}
|
|
|
|
|
2015-01-05 20:55:41 -06:00
|
|
|
trait Eq<X: ?Sized> { }
|
2015-01-05 15:16:49 -06:00
|
|
|
impl<X: ?Sized> Eq<X> for X { }
|
|
|
|
fn eq<A: ?Sized,B: ?Sized +Eq<A>>() { }
|
2014-11-15 18:10:08 -06:00
|
|
|
|
2014-11-03 20:52:52 -06:00
|
|
|
fn same_type<A,B:Eq<A>>(a: A, b: B) { }
|
|
|
|
|
|
|
|
fn test<'a,'b>() {
|
|
|
|
// Parens are equivalent to omitting default in angle.
|
2015-01-12 09:27:25 -06:00
|
|
|
eq::< Foo<(isize,),Output=()>, Foo(isize) >();
|
2014-11-03 20:52:52 -06:00
|
|
|
|
|
|
|
// Here we specify 'static explicitly in angle-bracket version.
|
|
|
|
// Parenthesized winds up getting inferred.
|
2015-01-12 09:27:25 -06:00
|
|
|
eq::< Foo<'static, (isize,),Output=()>, Foo(isize) >();
|
2014-11-03 20:52:52 -06:00
|
|
|
}
|
|
|
|
|
2015-01-12 09:27:25 -06:00
|
|
|
fn test2(x: &Foo<(isize,),Output=()>, y: &Foo(isize)) {
|
2014-11-03 20:52:52 -06:00
|
|
|
// Here, the omitted lifetimes are expanded to distinct things.
|
|
|
|
same_type(x, y) //~ ERROR cannot infer
|
2015-01-12 09:27:25 -06:00
|
|
|
//~^ ERROR cannot infer
|
2014-11-03 20:52:52 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() { }
|