Files
rust/tests/ui/error-codes/E0428.rs

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

8 lines
144 B
Rust
Raw Normal View History

//@ dont-require-annotations: NOTE
struct Bar; //~ NOTE previous definition of the type `Bar` here
2016-08-17 23:45:10 +02:00
struct Bar; //~ ERROR E0428
fn main () {
}