00001 package jpl.test;
00002
00003 import jpl.Query;
00004
00005 public class SyntaxError {
00006 public static void main(String argv[]) {
00007 Query q = new Query("syntax)error");
00008 System.err.println(q.hasSolution() ? "yes" : "no");
00009 }
00010 }