Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions test/async/drop-cross-task-borrow.wast
Original file line number Diff line number Diff line change
Expand Up @@ -125,10 +125,10 @@
(func (export "resume-dont-drop")
(canon lift (core func $dm "resume-dont-drop"))
)
(func (export "drop-other-and-self") (param "self" (borrow $R)) (result u32)
(func (export "drop-other-and-self") async (param "self" (borrow $R)) (result u32)
(canon lift (core func $dm "drop-other-and-self") async (callback (func $dm "unreachable-cb")))
)
(func (export "drop-wrong-one") (param "self" (borrow $R))
(func (export "drop-wrong-one") async (param "self" (borrow $R))
(canon lift (core func $dm "drop-wrong-one") async (callback (func $dm "unreachable-cb")))
)
)
Expand All @@ -143,8 +143,8 @@
(export "dont-drop" (func async (param "self" (borrow $R)) (result u32)))
(export "drop-handle" (func (result u32)))
(export "resume-dont-drop" (func))
(export "drop-other-and-self" (func (param "self" (borrow $R)) (result u32)))
(export "drop-wrong-one" (func (param "self" (borrow $R))))
(export "drop-other-and-self" (func async (param "self" (borrow $R)) (result u32)))
(export "drop-wrong-one" (func async (param "self" (borrow $R))))
))
(core module $Memory (memory (export "mem") 1))
(core instance $memory (instantiate $Memory))
Expand Down
Loading