:- object(misspell).
% call to an undefined but declared predicate
:- public(foo/0).
output :-
foo.
% call to an undefined local predicate
output(A) :-
bar(A).
% misspelt call to Prolog built-in predicate
writr(A).
:- end_object.
% singleton variables in opening object directive
:- object(singletons(L)).
% singleton variables in predicate clause
predicate(A) :-
write(C).
:- object(plredef).
% redefinition of a Prolog built-in predicate
write(_).
:- object(lgtredef).
% redefinition of Logtalk built-in predicate
current_object(_).
% references to unknown entities in object opening directive
:- object(unknownrefs,
implements(protocol),
imports(category),
extends(object)).
:- object(portability).
:- public(predicate/0).
% clause with calls to non-ISO Prolog standard predicates
predicate :-
compare(Result, first, second),
retractall(result(Result, _)),
sort([], []),
consult(file).