diff options
author | Son Ho | 2023-12-22 21:50:11 +0100 |
---|---|---|
committer | Son Ho | 2023-12-22 21:50:11 +0100 |
commit | d9ace7d5f1968f26b586fb712c725b2ce51086f8 (patch) | |
tree | cd404a15226634584e44944c85eb3f3a7f885d3e /backends/fstar/merge | |
parent | dd7552bec1be1695682801fca6ba6dfcfa990fbb (diff) |
Fix the models for core::mem::replace
Diffstat (limited to 'backends/fstar/merge')
-rw-r--r-- | backends/fstar/merge/Primitives.fst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/fstar/merge/Primitives.fst b/backends/fstar/merge/Primitives.fst index 6b8dbeb7..8011efa1 100644 --- a/backends/fstar/merge/Primitives.fst +++ b/backends/fstar/merge/Primitives.fst @@ -55,7 +55,7 @@ type string = string let is_zero (n: nat) : bool = n = 0 let decrease (n: nat{n > 0}) : nat = n - 1 -let core_mem_replace (a : Type0) (x : a) (y : a) : a & (a -> a) = (x, (fun x -> x)) +let core_mem_replace (a : Type0) (x : a) (y : a) : a & a = (x, x) // We don't really use raw pointers for now type mut_raw_ptr (t : Type0) = { v : t } |