Skip to content

Commit

Permalink
Add a couple tests for rust-lang#90887 fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
aliemjay committed Apr 23, 2022
1 parent 8834629 commit a0b464a
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,20 @@ where
fn main() {
foo::<Vec<u32>>(vec![]);
}

mod another {
use std::ops::Deref;

fn test<T, TDeref>()
where
T: Deref<Target = TDeref>,
TDeref: ?Sized,
for<'a> &'a TDeref: IntoIterator,
for<'a> <&'a TDeref as IntoIterator>::IntoIter: Clone,
{
}

fn main() {
test::<Vec<u8>, _>();
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
// check-pass

trait Variable<'a> {
type Type;
}

impl Variable<'_> for () {
type Type = ();
}

fn check<F, T>(_: F)
where
F: Fn(T), // <- if removed, all fn_* then require type annotations
F: for<'a> Fn(<T as Variable<'a>>::Type),
T: for<'a> Variable<'a>,
{
}

fn test(arg: impl Fn(())) {
fn fn_1(_: ()) {}
let fn_2 = |_: ()| ();
let fn_3 = |a| fn_1(a);
let fn_4 = arg;

check(fn_1); // Error
check(fn_2); // Ok
check(fn_3); // Ok
check(fn_4); // Error
}

fn main() {}

0 comments on commit a0b464a

Please sign in to comment.