mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 23:34:48 +00:00
19 lines
362 B
Rust
19 lines
362 B
Rust
// check-pass
|
|
// compile-flags: -Ztrait-solver=next
|
|
|
|
// HIR typeck ends up equating `<?0i as Add>::Output == ?0i`.
|
|
// Want to make sure that we emit an alias-eq goal for this,
|
|
// instead of treating it as a type error and bailing.
|
|
|
|
fn test() {
|
|
// fallback
|
|
let x = 1 + 2;
|
|
}
|
|
|
|
fn test2() -> u32 {
|
|
// expectation from return ty
|
|
1 + 2
|
|
}
|
|
|
|
fn main() {}
|