]> git.lizzy.rs Git - rust.git/blob - tests/ui/where-clauses/where-equality-constraints.rs
Modify existing bounds if they exist
[rust.git] / tests / ui / where-clauses / where-equality-constraints.rs
1 fn f() where u8 = u16 {}
2 //~^ ERROR equality constraints are not yet supported in `where` clauses
3 fn g() where for<'a> &'static (u8,) == u16, {}
4 //~^ ERROR equality constraints are not yet supported in `where` clauses
5
6 fn main() {}