Hello.
I got a strange warning I can't understand why.
src/main.rs:183:33: 210:22 warning: label name `'ecto_loop` shadows a label name that is already in scope
src/main.rs:183 'ecto_loop: loop {
...
src/main.rs:183:33: 210:22 note: shadowed label `'ecto_loop` declared here
src/main.rs:183 'ecto_loop: loop {
...
But I'm pretty sure there is only one 'ecto_loop label. And how It's possible to shadow itself? Can someone please explain what does compiler mean?