You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Building for debugging...
/home/kali/Fuzz/fuzzilli/Sources/Fuzzilli/Lifting/WasmLifter.swift:595:55: error: cannot call value of non-function type'Int'let numDefinedTablesWithEntries = self.tables.count { instruction in
^
error: fatalError
whether is the swift version too high?
The text was updated successfully, but these errors were encountered:
The Array.count with a predicate function was added in 6.0.x1, are you sure you compiled with 6.0.3?
(I ran into the same issue when the change landed and updating to 6.0.3 fixed the compile error.)
As a workround you could replace the code in question with:
letnumDefinedTablesWithEntries=self.tables.filter{ instruction in
!(instruction.op as!WasmDefineTable).definedEntryIndices.isEmpty
}.count
environment:
compile error as follow:
whether is the swift version too high?
The text was updated successfully, but these errors were encountered: