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> {
|
|
|
|
}
|
|
|
|
|
2020-01-29 18:55:37 -06:00
|
|
|
fn bar<T,U>()
|
|
|
|
where T: MustBeCopy<U> //~ ERROR E0277
|
2015-08-07 12:31:42 -05:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2018-10-30 18:18:11 -05:00
|
|
|
|
2015-12-15 03:31:58 -06:00
|
|
|
fn main() { }
|