mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
32 lines
373 B
Rust
32 lines
373 B
Rust
// run-pass
|
|
#![allow(dead_code)]
|
|
#![allow(non_camel_case_types)]
|
|
|
|
// pretty-expanded FIXME #23616
|
|
|
|
struct c1<T> {
|
|
x: T,
|
|
}
|
|
|
|
impl<T> c1<T> {
|
|
pub fn f1(&self, _x: isize) {
|
|
}
|
|
}
|
|
|
|
fn c1<T>(x: T) -> c1<T> {
|
|
c1 {
|
|
x: x
|
|
}
|
|
}
|
|
|
|
impl<T> c1<T> {
|
|
pub fn f2(&self, _x: isize) {
|
|
}
|
|
}
|
|
|
|
|
|
pub fn main() {
|
|
c1::<isize>(3).f1(4);
|
|
c1::<isize>(3).f2(4);
|
|
}
|