rust/tests/ui/wf/wf-in-fn-type-arg.rs

13 lines
198 B
Rust

// Check that we enforce WF conditions also for types in fns.
struct MustBeCopy<T:Copy> {
t: T
}
struct Bar<T> {
// needs T: Copy
x: fn(MustBeCopy<T>) //~ ERROR E0277
}
fn main() { }