lambdapi icon indicating copy to clipboard operation
lambdapi copied to clipboard

Wrong position when using modifiers

Open fblanqui opened this issue 2 years ago • 0 comments

Example: tests/OK/ac.lp

lambdapi check --verbose 4 tests/OK/ac.lp 

Checking "/home/blanqui/src/lambdapi/tests/OK/ac.lp" ...
/home/blanqui/src/lambdapi/tests/OK/ac.lp:3:0-25
constant symbol A : TYPE;
symbol A : TYPE
/home/blanqui/src/lambdapi/tests/OK/ac.lp:5:0-33
commutative symbol + : A → A → A;
symbol + : A → A → A
/home/blanqui/src/lambdapi/tests/OK/ac.lp:6:0-20
notation + infix 10;
notation + infix 10.000000
/home/blanqui/src/lambdapi/tests/OK/ac.lp:7:0-27
assert ⊢ λ x y, x + y ≡ λ x y, y + x;
assertion: it is true that λ x y, y + x ≡ λ x y, y + x
1:0-9:45
associative commutative symbol * : A → A → A;

In the last position, the filename is missing and the start position is wrong.

fblanqui avatar Jul 25 '23 16:07 fblanqui