FIXED bug in goal expansion of chr_identifier lookup operation
[chr.git] / Tests / passive_check.chr
blob86e3f9c691039d2346ff5e40cf8c436123fc9f8c
1 :- module(passive_check,[passive_check/0]).
2 :- use_module(library(chr)).
4 :- chr_constraint a/1, b/1.
6 :- chr_option(debug,off).
7 :- chr_option(optimize,full).
9 a(X) # ID, b(X) <=> true pragma passive(ID).
11 passive_check :-
12         a(_).