rust/tests/ui/resolve/struct-function-same-name-2445.rs
2026-02-01 04:09:25 +00:00

26 lines
378 B
Rust

//! Regression test for https://github.com/rust-lang/rust/issues/2445
//@ run-pass
#![allow(dead_code)]
#![allow(non_camel_case_types)]
struct c1<T> {
x: T,
}
impl<T> c1<T> {
pub fn f1(&self, _x: T) {}
}
fn c1<T>(x: T) -> c1<T> {
c1 { x }
}
impl<T> c1<T> {
pub fn f2(&self, _x: T) {}
}
pub fn main() {
c1::<isize>(3).f1(4);
c1::<isize>(3).f2(4);
}