error: type mismatch: expected type `Int`, but found built-in type `None`
┌─ tests/analysis/inputs-with-none-errors/source.wdl:33:18
│
33 │ input4 = None,
│ ------ ^^^^ this is built-in type `None`
│ │
│ this expects type `Int`
error: missing required call input `input4` for task `t`
┌─ tests/analysis/inputs-with-none-errors/source.wdl:36:10
│
36 │ call t as t2
│ ^
error: type mismatch: expected type `Int`, but found built-in type `None`
┌─ tests/analysis/inputs-with-none-errors/source.wdl:42:18
│
42 │ input4 = None,
│ ------ ^^^^ this is built-in type `None`
│ │
│ this expects type `Int`
error: missing required call input `input4` for workflow `w`
┌─ tests/analysis/inputs-with-none-errors/source.wdl:45:12
│
45 │ call w.w as w2
│ ^