Skip to content

Commit 11d27fa

Browse files
committed
Merge branch 'main' into multiple-named-return-vals
2 parents 0aa81a0 + b5d6f37 commit 11d27fa

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+3215
-610
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: ci
33
on:
44
push:
55
branches:
6-
- 'main'
6+
- "main"
77

88
workflow_dispatch:
99

@@ -201,7 +201,7 @@ jobs:
201201

202202
- name: download singular
203203
if: matrix.features == 'singular'
204-
run: curl -LO https://www.singular.uni-kl.de/ftp/pub/Math/Singular/UNIX/Singular-4-3-2_M1.dmg
204+
run: curl -fLO https://github.com/verus-lang/verus/releases/download/dependency/singular-4.3.2/Singular-4-3-2_M1.dmg
205205

206206
- name: build
207207
working-directory: ./source

examples/cells.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,7 @@ fn main() {
1616
assert(token.mem_contents() === MemContents::Init(X { i: 5 }));
1717
}
1818

19+
fn pcell_example() {
20+
}
21+
1922
} // verus!

0 commit comments

Comments
 (0)