This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
yap-6.3/Logtalk/examples/errors/warnings.lgt

65 lines
896 B
Plaintext
Raw Normal View History

:- object(misspell).
% misspelt call to Prolog built-in predicate
output(A) :-
writr(A).
:- end_object.
% singleton variables in opening object directive
:- object(singletons(L)).
% singleton variables in predicate clause
predicate(A) :-
write(C).
:- end_object.
:- object(plredef).
% redefinition of a Prolog built-in predicate
write(_).
:- end_object.
:- object(lgtredef).
% redefinition of Logtalk built-in predicate
current_object(_).
:- end_object.
% references to unknown entities in object opening directive
:- object(unknownrefs,
implements(protocol),
imports(category),
extends(object)).
:- end_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).
:- end_object.