]> git.lizzy.rs Git - rust.git/blob - tests/ui/where-clauses/where-equality-constraints.rs
Auto merge of #106092 - asquared31415:start_lang_item_checks, r=davidtwco
[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() {}