1 package jpl.test;
2 
3 import jpl.Query;
4 
5 public class SyntaxError {
main(String argv[])6 	public static void main(String argv[]) {
7 		Query q = new Query("syntax)error");
8 		System.err.println(q.hasSolution() ? "yes" : "no");
9 	}
10 }
11