blob: 6c5a5539245612b5c30f52ef358022af7ce16118 [file] [log] [blame]
struct S;
trait InOut<T> { type Out; }
fn do_fold<B, F: InOut<B, Out=B>>(init: B, f: F) {}
fn bot<T>() -> T { loop {} }
fn main() {
do_fold(bot(), ()); //~ ERROR `(): InOut<_>` is not satisfied
}