blob: 170fad55f8f65b8786267bedaa8a55f203bd1f1f [file] [log] [blame]
// Check that we enforce WF conditions also for types in fns.
trait Object<T> { }
struct MustBeCopy<T:Copy> {
t: T
}
struct Bar<T> {
// needs T: Copy
x: dyn Object<MustBeCopy<T>> //~ ERROR E0277
}
fn main() { }