This website requires JavaScript.
Explore
Help
Sign In
nordic-dev.net
/
rust
Watch
2
Star
0
Fork
0
You've already forked rust
mirror of
https://github.com/rust-lang/rust.git
synced
2025-05-02 04:57:35 +00:00
Code
Issues
Packages
Projects
Releases
Wiki
Activity
31ae7c46bd
rust
/
tests
/
ui
/
error-codes
/
E0559.rs
9 lines
109 B
Rust
Raw
Normal View
History
Unescape
Escape
Add new error code tests
2016-08-30 11:13:37 +00:00
enum
Field
{
Fool
{
x
:
u32
}
,
}
fn
main
(
)
{
Updated E0559 to new format Refactored a method that printed one suggested field name, into a method that returns an `Option` of a suggestion Updated test cases accordingly
2016-09-04 19:14:41 +00:00
let
s
=
Field
::
Fool
{
joke
:
0
}
;
//~^ ERROR E0559
Add new error code tests
2016-08-30 11:13:37 +00:00
}
Reference in New Issue
Copy Permalink