-
-
Notifications
You must be signed in to change notification settings - Fork 379
Closed
Description
Summary:
The parser is producing a confusing warning for the following ill-formed Stan program:
transformed data {
real x = atan2(2 ; 3);
}
See the Discourse topic for more examples
Current Output:
SYNTAX ERROR, MESSAGE(S) FROM PARSER:
error in '/Users/carp/temp2/confusing.stan' at line 2, column 17
-------------------------------------------------
1: transformed data {
2: real x = atan2(2 ; 3);
^
3: }
-------------------------------------------------
PARSER EXPECTED: "("
Expected Output:
Something like "expected , or )" pointing before the semicolon.
Current Version:
v2.18.0