mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
16 lines
254 B
Rust
16 lines
254 B
Rust
// run-rustfix
|
|
|
|
#![allow(unused)]
|
|
|
|
struct Foo<T>(T);
|
|
|
|
impl<T> Foo<T> {
|
|
fn test() -> i32 { 1 }
|
|
}
|
|
|
|
fn main() {
|
|
let x = Box::new(Foo(1i32));
|
|
x.test();
|
|
//~^ ERROR no method named `test` found for struct `Box<Foo<i32>>` in the current scope
|
|
}
|