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
300901b705
rust
/
tests
/
ui
/
error-codes
/
ex-E0612.rs
7 lines
96 B
Rust
Raw
Normal View
History
Unescape
Escape
Add E0612
2017-06-12 19:10:53 +00:00
struct
Foo
(
u32
)
;
fn
main
(
)
{
let
y
=
Foo
(
0
)
;
AST/HIR: Merge field access expressions for named and numeric fields
2018-04-01 18:48:39 +00:00
y
.
1
;
//~ ERROR no field `1` on type `Foo`
Add E0612
2017-06-12 19:10:53 +00:00
}
Reference in New Issue
Copy Permalink