Handle input predicates correctly

This commit is contained in:
2020-05-28 06:29:57 +02:00
parent 1e55f733d0
commit 870fdd048c
2 changed files with 7 additions and 1 deletions

View File

@@ -69,6 +69,11 @@ impl Problem
continue;
}
if *predicate_declaration.is_input.borrow()
{
continue;
}
let matching_statement = |statement: &&Statement|
match statement.kind
{