1 2% A regression test for bug #212. In r13904, the FlatZinc optimizer was 3% aborting on the string literal annotation argument below. 4 5annotation f(string:x); 6 7var int : x; 8var int : y; 9constraint (x != y) :: f("abc"); 10 11solve satisfy;