diff options
author | ringabout <43030857+ringabout@users.noreply.github.com> | 2022-11-04 16:53:19 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-04 09:53:19 +0100 |
commit | 12a20b9fb67598558e60ae9ffa3ca9780c6d8cba (patch) | |
tree | d3d357aef3efc46f027106f31f696d5d5cfe58da /tests/errmsgs | |
parent | 8fb172c7a62732306ada098a276fada77f8f4805 (diff) | |
download | Nim-12a20b9fb67598558e60ae9ffa3ca9780c6d8cba.tar.gz |
revert #20719; relieve `std/assertions` of the `sysFatal` dep (#20743)
* Revert "make `system/fatal` importable (#20718)" This reverts commit d735c447d35948ef6fda8270d1665cbd66c4636a. * relieve `std/assertions` of the sysFatal dep
Diffstat (limited to 'tests/errmsgs')
-rw-r--r-- | tests/errmsgs/t9768.nim | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/tests/errmsgs/t9768.nim b/tests/errmsgs/t9768.nim index b72a158c7..94def90f0 100644 --- a/tests/errmsgs/t9768.nim +++ b/tests/errmsgs/t9768.nim @@ -1,10 +1,10 @@ discard """ - errormsg: "unhandled exception:" - file: "system/fatal.nim" + errormsg: "unhandled exception: t9768.nim(24, 12) `a < 4` [AssertionDefect]" + file: "std/assertions.nim" nimout: ''' stack trace: (most recent call last) -t9768.nim(28, 33) main -t9768.nim(23, 11) foo1 +t9768.nim(29, 33) main +t9768.nim(24, 11) foo1 ''' """ @@ -17,6 +17,7 @@ t9768.nim(23, 11) foo1 + ## line 20 proc foo1(a: int): auto = |