This website requires JavaScript.
Explore
Help
Sign in
bjoernager
/
rust
Watch
1
Fork
You've already forked rust
0
Code
Activity
b3bbc22cb7
rust
/
tests
/
ui
/
error-codes
/
E0076.rs
9 lines
97 B
Rust
Raw
Normal View
History
Unescape
Escape
Add new error code tests
2016-05-20 15:18:30 +02:00
#![
feature(repr_simd)
]
#[
repr(simd)
]
Update compiler error E0076 to use new error format Fixes #35221 part of #35233
2016-08-28 01:12:54 +05:30
struct
Bad
(
u16
,
u32
,
u32
)
;
//~^ ERROR E0076
Add new error code tests
2016-05-20 15:18:30 +02:00
fn
main
(
)
{
}
Copy permalink