1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

checker: force interface init (#10910)

This commit is contained in:
Daniel Däschle
2021-07-30 02:18:20 +02:00
committed by GitHub
parent 1eac351f25
commit 6fa8e4269e
14 changed files with 87 additions and 19 deletions

View File

@@ -57,6 +57,7 @@ fn new_cancel_context(parent Context) &CancelContext {
context: parent
mutex: sync.new_mutex()
done: chan int{cap: 2}
err: none
}
}