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
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");
}