Skip to content

Commit e48dfc4

Browse files
committed
Explicit type for resolution regression
1 parent 24b5b48 commit e48dfc4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

DynamoDbEncryption/dafny/DynamoDbEncryption/src/DynamoToStruct.dfy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -657,7 +657,7 @@ module DynamoToStruct {
657657
var len := |attrNames| as uint64;
658658
var output :- U32ToBigEndian64(len);
659659
for i : uint64 := 0 to len {
660-
var k := attrNames[i];
660+
var k: AttributeName := attrNames[i];
661661
var val := AttrToBytes(m[k], true, depth+1);
662662
if val.Failure? {
663663
var result := Failure(val.error);

0 commit comments

Comments
 (0)