blob: 6c5a5539245612b5c30f52ef358022af7ce16118 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
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
}
|