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[E0999]: cannot resolve `bv_and`
--> attic/playground.rs:11:45
|
11 | #[flux::sig(fn(BV8 [@b1], BV8 [@b2]) -> bv_and(b1, b2))]
| ^^^^^^^^^^^^^^
|
= help: flux can only resolve a path if it is present in the definition being refined
bv_and is parsed as a type, but the error doesn't mention type anywhere. The help: is also not true since we implemented the global resolver so it should be removed.
We should give an error similar to what rustc gives
error[E0999]: cannot resolve type `bv_and` in this scope
--> attic/playground.rs:11:45
|
11 | #[flux::sig(fn(BV8 [@b1], BV8 [@b2]) -> bv_and(b1, b2))]
| ^^^^^^^^^^^^^^
| not found in this scope
The text was updated successfully, but these errors were encountered:
Consider the following
It currently fails with
bv_and
is parsed as a type, but the error doesn't mention type anywhere. Thehelp:
is also not true since we implemented the global resolver so it should be removed.We should give an error similar to what rustc gives
The text was updated successfully, but these errors were encountered: