rust/src/test/ui/error-codes/E0390.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
75 B
Rust
Raw Normal View History

2016-08-06 14:44:49 -05:00
struct Foo {
x: i32
}
impl *mut Foo {} //~ ERROR E0390
fn main() {
}