13 lines
481 B
Plaintext
13 lines
481 B
Plaintext
error[E0600]: cannot apply unary operator `!` to type `BytePos`
|
|
--> $DIR/issue-14091-2.rs:15:5
|
|
|
|
|
LL | assert!(x, x);
|
|
| ^^^^^^^^^^^^^^ cannot apply unary operator `!`
|
|
|
|
|
= note: an implementation of `std::ops::Not` might be missing for `BytePos`
|
|
= note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
|
|
error: aborting due to previous error
|
|
|
|
For more information about this error, try `rustc --explain E0600`.
|