Skip to content

Commit 38302ff

Browse files
committed
Format
1 parent d1e9695 commit 38302ff

31 files changed

+10903
-8830
lines changed

compiler/Assert.fir

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
assertEq[Eq[t], ToStr[t]](expected: t, found: t):
22
if expected != found:
3-
throwUnchecked(~AssertionError(msg = "Expected `expected`, found `found`"))
3+
throwUnchecked(
4+
~AssertionError(msg = "Expected `expected`, found `found`"),
5+
)
6+
47

58
assert(cond: Bool):
69
if not cond:

0 commit comments

Comments
 (0)