Open
Description
CBMC version: 5.58.1
Operating system: Ubuntu 20.04 - kernel 5.15.0-52-generic
Exact command line resulting in the issue: JBMC_BIN --classpath $JAVA_MODEL:./$TESTS my.petty.examples.SimpleMethod.foo:(Ljava/lang/String;)Z --unwind 5
What behaviour did you expect: To verify the method.
What happened instead: bash: syntax error near unexpected token
('`
The code of the method is:
public boolean foo(String m) {
return m.equals("AB");
}