File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
TestVectors/dafny/DDBEncryption/src Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -220,9 +220,9 @@ module {:options "-functionSyntax:4"} WriteManifest {
220
220
const A : string := "A"
221
221
const B : string := "\ud000" // "Ud000" <-> "퀀"
222
222
const C : string := "\ufe4c" // "Ufe4c" <-> "﹌"
223
- const D : string := "\u10001 " // "U10001" <-> "𐀁" (surrogate pair: "\uD800\uDC01")
224
- const E : string := "\u10002 " // "U10002" <-> "𐀂" (same high surrogate as D: "\uD800\uDC02")
225
- const F : string := "\u20002 " // "U20002" <-> "𠀂" (different high surrogate as D: "\D840\uDC02")
223
+ const D : string := "\uD800\uDC01 " // "U10001" <-> "𐀁" (surrogate pair: "\uD800\uDC01")
224
+ const E : string := "\uD800\uDC02 " // "U10002" <-> "𐀂" (same high surrogate as D: "\uD800\uDC02")
225
+ const F : string := "\uD840\uDC02 " // "U20002" <-> "𠀂" (different high surrogate as D: "\D840\uDC02")
226
226
227
227
lemma CheckLengths ()
228
228
ensures |A| == 1
You can’t perform that action at this time.
0 commit comments