mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
14 lines
308 B
Rust
14 lines
308 B
Rust
// build-pass
|
|
|
|
// This used to fail MIR validation due to the types on both sides of
|
|
// an assignment not being equal.
|
|
// The failure doesn't occur with a check-only build.
|
|
|
|
fn iter_slice<'a, T>(xs: &'a [T]) -> impl Iterator<Item = &'a T> {
|
|
xs.iter()
|
|
}
|
|
|
|
fn main() {
|
|
iter_slice::<()> as fn(_) -> _;
|
|
}
|