This website requires JavaScript.
Explore
Help
Register
Sign In
mikros
/
rust
Watch
1
Star
0
Fork
0
You've already forked rust
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
rust
/
tests
/
ui
/
error-codes
/
ex-E0612.rs
7 lines
96 B
Rust
Raw
Normal View
History
Unescape
Escape
Add E0612
2017-06-12 21:10:53 +02:00
struct
Foo
(
u32
)
;
fn
main
(
)
{
let
y
=
Foo
(
0
)
;
AST/HIR: Merge field access expressions for named and numeric fields
2018-04-01 21:48:39 +03:00
y
.
1
;
//~ ERROR no field `1` on type `Foo`
Add E0612
2017-06-12 21:10:53 +02:00
}
Reference in New Issue
Copy Permalink