mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
17 lines
284 B
Rust
17 lines
284 B
Rust
// run-rustfix
|
|
|
|
trait T {
|
|
unsafe fn foo(a: &usize, b: &usize) -> usize;
|
|
fn bar(&self, a: &usize, b: &usize) -> usize;
|
|
}
|
|
|
|
mod foo {
|
|
use super::T;
|
|
impl T for () {} //~ ERROR not all trait items
|
|
|
|
impl T for usize { //~ ERROR not all trait items
|
|
}
|
|
}
|
|
|
|
fn main() {}
|