rust/tests/ui/error-codes/E0084.rs

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

6 lines
57 B
Rust
Raw Normal View History

2017-11-15 06:45:18 +08:00
#[repr(i32)] //~ ERROR: E0084
enum Foo {}
2016-05-25 19:58:07 +08:00
fn main() {
}