svoid assertEndsWith(L a, L b) { if (!endsWith(a, b)) fail(a + " does not end with " + b); } svoid assertEndsWith(S a, S b) { if (!endsWith(a, b)) fail(quote(a) + " does not end with " + quote(b)); }