mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-31 10:22:15 +00:00
29 lines
517 B
Nim
29 lines
517 B
Nim
discard """
|
|
outputsub: "CustomChildError"
|
|
exitcode: 1
|
|
"""
|
|
|
|
type
|
|
CustomError* = object of Exception
|
|
CustomChildError* = object of CustomError
|
|
|
|
FutureBase* = ref object of RootObj
|
|
error*: ref Exception
|
|
|
|
Future*[T] = ref object of FutureBase
|
|
v: T
|
|
|
|
proc fail[T](future: Future[T], error: ref Exception) =
|
|
future.error = error
|
|
|
|
proc w1(): Future[int] =
|
|
result = Future[int]()
|
|
result.fail(newException(CustomChildError, "abc"))
|
|
|
|
proc main =
|
|
var fut = w1()
|
|
if true:
|
|
raise fut.error
|
|
|
|
main()
|