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
Dafny currently does not support attributes on parameters. Allowing attributes here is useful for custom back-ends that may wish to annotate parameters to customize code generation
Example:
functionFoo({:should-be-possible} x: int): int {
3
}
datatype A = A({:should-be-possible} x: int)
The text was updated successfully, but these errors were encountered:
Dafny currently does not support attributes on parameters. Allowing attributes here is useful for custom back-ends that may wish to annotate parameters to customize code generation
Example:
The text was updated successfully, but these errors were encountered: