Skip to content

Commit af3f45b

Browse files
robin-awsajewellamz
authored andcommitted
fix: Avoid stacking newtype definition to avoid bug fixed by Dafny PR #4569 (#555)
1 parent 0079a51 commit af3f45b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

DynamoDbEncryption/dafny/DynamoDbEncryption/src/SearchInfo.dfy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ module SearchableEncryptionInfo {
3030
//= specification/searchable-encryption/search-config.md#version-number
3131
//= type=implication
3232
//# A version number MUST be `1`.
33-
newtype VersionNumber = x : uint64 | x == 1 witness 1
33+
newtype VersionNumber = x : int | x == 1 witness 1
3434

3535
type ValidSearchInfo = x : SearchInfo | x.ValidState() witness *
3636

0 commit comments

Comments
 (0)