mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
7 lines
232 B
Rust
7 lines
232 B
Rust
fn f() where u8 = u16 {}
|
|
//~^ ERROR equality constraints are not yet supported in `where` clauses
|
|
fn g() where for<'a> &'static (u8,) == u16, {}
|
|
//~^ ERROR equality constraints are not yet supported in `where` clauses
|
|
|
|
fn main() {}
|