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
7b8644e5cf
rust
/
tests
/
ui
/
sized
/
unsized-binding.rs
6 lines
93 B
Rust
Raw
Normal View
History
Unescape
Escape
Add test for #56607
2023-06-30 03:06:15 +00:00
fn
main
(
)
{
let
x
=
*
"
"
;
//~ ERROR E0277
Only emit one error per unsized binding, instead of one per usage Fix #56607.
2023-06-30 03:14:44 +00:00
println!
(
"
{}
"
,
x
)
;
println!
(
"
{}
"
,
x
)
;
Add test for #56607
2023-06-30 03:06:15 +00:00
}
Reference in New Issue
Copy Permalink