mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-01 12:37:37 +00:00

- `check-pass` test for a MRE of #135020 - fail test for #135138 - switch to `TooGeneric` for checking CMSE fn signatures - switch to `TooGeneric` for compute `SizeSkeleton` (for transmute) - fix broken tests
8 lines
113 B
Rust
8 lines
113 B
Rust
//@ check-pass
|
|
|
|
fn problem_thingy(items: &mut impl Iterator<Item = str>) {
|
|
items.peekable();
|
|
}
|
|
|
|
fn main() {}
|