rust/src/test/ui/unboxed-closures/unboxed-closure-sugar-default.rs

29 lines
885 B
Rust
Raw Normal View History

// Test interaction between unboxed closure sugar and default type
// parameters (should be exactly as if angle brackets were used).
#![feature(unboxed_closures)]
#![allow(dead_code)]
trait Foo<T,V=T> {
type Output;
fn dummy(&self, t: T, v: V);
}
trait Eq<X: ?Sized> { fn same_types(&self, x: &X) -> bool { true } }
2015-01-05 15:16:49 -06:00
impl<X: ?Sized> Eq<X> for X { }
fn eq<A: ?Sized,B: ?Sized>() where A : Eq<B> { }
fn test<'a,'b>() {
// Parens are equivalent to omitting default in angle.
eq::< Foo<(isize,),Output=()>, Foo(isize) >();
// In angle version, we supply something other than the default
eq::< Foo<(isize,),isize,Output=()>, Foo(isize) >();
//~^ ERROR E0277
// Supply default explicitly.
eq::< Foo<(isize,),(isize,),Output=()>, Foo(isize) >();
}
fn main() { }