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
If you have an argument of primitive type and you assert ownership of it you'll get an "Invalid acc() argument" exception. This should be an error message instead of an exception, and it should say something like "can't assert ownership of a variable of primitive type" or similar.
Example code:
void foo(int x)
// @requires acc(x)
{ ... }
The text was updated successfully, but these errors were encountered:
If you have an argument of primitive type and you assert ownership of it you'll get an "Invalid acc() argument" exception. This should be an error message instead of an exception, and it should say something like "can't assert ownership of a variable of primitive type" or similar.
Example code:
The text was updated successfully, but these errors were encountered: