You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
error[E0277]: the trait bound `u8: Buf` is not satisfied
--> src/scanner.rs:257:25
|
257 | self.buffer.put(c as u8)
| ^^^^^^^ the trait `Buf` is not implemented for `u8`
warning: unreachable expression
--> src/scanner.rs:352:9
|
314 | / loop {
315 | | match self.current {
316 | | EOF => {
317 | | if is_comment {
... |
350 | | }
351 | | }
| |_________- any code following this expression is unreachable
352 | unreachable!()
| ^^^^^^^^^^^^^^ unreachable expression
|
= note: `#[warn(unreachable_code)]` on by default
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
error: aborting due to previous error; 1 warning emitted
The text was updated successfully, but these errors were encountered:
I get this error trying on compile that tool:
The text was updated successfully, but these errors were encountered: