// Copyright 2016 The Rust Project Developers. See the COPYRIGHT // file at the top-level directory of this distribution and at // http://rust-lang.org/COPYRIGHT. // // Licensed under the Apache License, Version 2.0 or the MIT license // , at your // option. This file may not be copied, modified, or distributed // except according to those terms. use std::mem; struct Misc(T); fn check() { // suggest a where-clause, if needed mem::size_of::(); //~^ ERROR `U : std::marker::Sized` is not satisfied //~| HELP E0277 //~| HELP consider adding a `where U : std::marker::Sized` bound //~| NOTE required by `std::mem::size_of` mem::size_of::>(); //~^ ERROR `U : std::marker::Sized` is not satisfied //~| HELP E0277 //~| HELP consider adding a `where U : std::marker::Sized` bound //~| NOTE required because it appears within the type `Misc` //~| NOTE required by `std::mem::size_of` // ... even if T occurs as a type parameter >::from; //~^ ERROR `u64 : std::convert::From` is not satisfied //~| HELP E0277 //~| HELP consider adding a `where u64 : std::convert::From` bound //~| NOTE required by `std::convert::From::from` ::Item>>::from; //~^ ERROR `u64 : std::convert::From<::Item>` is not satisfied //~| HELP E0277 //~| HELP consider adding a `where u64 : //~| NOTE required by `std::convert::From::from` // ... but not if there are inference variables as From>::from; //~^ ERROR `Misc<_> : std::convert::From` is not satisfied //~| HELP E0277 //~| NOTE required by `std::convert::From::from` // ... and also not if the error is not related to the type mem::size_of::<[T]>(); //~^ ERROR `[T] : std::marker::Sized` is not satisfied //~| HELP E0277 //~| NOTE `[T]` does not have a constant size //~| NOTE required by `std::mem::size_of` mem::size_of::<[&U]>(); //~^ ERROR `[&U] : std::marker::Sized` is not satisfied //~| HELP E0277 //~| NOTE `[&U]` does not have a constant size //~| NOTE required by `std::mem::size_of` } fn main() { }