2015-08-07 12:31:42 -05:00
|
|
|
// Check that we enforce WF conditions also for where clauses in fn items.
|
|
|
|
|
2018-10-30 18:18:11 -05:00
|
|
|
|
2015-08-07 12:31:42 -05:00
|
|
|
#![allow(dead_code)]
|
|
|
|
|
|
|
|
trait MustBeCopy<T:Copy> {
|
|
|
|
}
|
|
|
|
|
2015-12-15 03:31:58 -06:00
|
|
|
fn bar<T,U>() //~ ERROR E0277
|
2015-08-07 12:31:42 -05:00
|
|
|
where T: MustBeCopy<U>
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2018-10-30 18:18:11 -05:00
|
|
|
|
2015-12-15 03:31:58 -06:00
|
|
|
fn main() { }
|