2017-01-18 08:41:57 -06:00
|
|
|
fn f() where u8 = u16 {}
|
|
|
|
//~^ ERROR equality constraints are not yet supported in where clauses
|
2017-01-27 11:03:59 -06:00
|
|
|
fn g() where for<'a> &'static (u8,) == u16, {}
|
2017-01-18 08:41:57 -06:00
|
|
|
//~^ ERROR equality constraints are not yet supported in where clauses
|
|
|
|
|
|
|
|
fn main() {}
|