11 lines
108 B
Rust
11 lines
108 B
Rust
struct Foo {
|
|
x: i32
|
|
}
|
|
|
|
impl *mut Foo {} //~ ERROR E0390
|
|
|
|
impl fn(Foo) {} //~ ERROR E0390
|
|
|
|
fn main() {
|
|
}
|