rust/tests/ui/rust-2021/inherent-method-collision.rs
2023-01-11 09:32:08 +00:00

16 lines
272 B
Rust

// Test that we do NOT warn for inherent methods invoked via `T::` form.
//
// check-pass
#![deny(rust_2021_prelude_collisions)]
pub struct MySeq {}
impl MySeq {
pub fn from_iter(_: impl IntoIterator<Item = u32>) {}
}
fn main() {
MySeq::from_iter(Some(22));
}