summaryrefslogtreecommitdiffstats
path: root/src/test/ui/rust-2021/inherent-method-collision.rs
blob: 507105207d695e18794c876f7c5390c0cbf890dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// 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));
}