Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
why3
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
125
Issues
125
List
Boards
Labels
Service Desk
Milestones
Merge Requests
17
Merge Requests
17
Operations
Operations
Incidents
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Why3
why3
Commits
b65dd4ae
Commit
b65dd4ae
authored
Feb 22, 2016
by
Jean-Christophe Filliâtre
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
logical symbols are not allowed in programs anymore
still allowed in the API (so far)
parent
dfc90db6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
src/parser/typing.ml
src/parser/typing.ml
+3
-1
No files found.
src/parser/typing.ml
View file @
b65dd4ae
...
...
@@ -567,7 +567,9 @@ let rec dexpr muc denv {expr_desc = desc; expr_loc = loc} =
let
qualid_app
loc
q
el
=
let
e
=
try
match
find_prog_symbol
muc
q
with
|
PV
pv
->
DEpv
pv
|
RS
rs
->
DErs
rs
with
|
_
->
DEls
(
find_lsymbol
muc
.
muc_theory
q
)
in
|
_
->
ignore
(
find_lsymbol
muc
.
muc_theory
q
);
Loc
.
errorm
~
loc
"Symbol %a is a pure logical symbol, \
it cannot be used in a program"
print_qualid
q
in
expr_app
loc
e
el
in
let
qualid_app
loc
q
el
=
match
q
with
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment