Opened 4 years ago
Closed 4 years ago
#11257 closed enhancement (fixed)
false negative: constStatement with misused comma
| Reported by: | kidkat | Owned by: | noone |
|---|---|---|---|
| Priority: | Normal | Milestone: | 2.9 |
| Component: | Improve check | Version: | |
| Keywords: | constStatement regression | Cc: |
Description
Change History (4)
comment:1 by , 4 years ago
| Component: | Other → Improve check |
|---|
comment:3 by , 4 years ago
| Keywords: | ast removed |
|---|
comment:4 by , 4 years ago
| Milestone: | → 2.9 |
|---|---|
| Resolution: | → fixed |
| Status: | new → closed |
Note:
See TracTickets
for help on using tickets.
Probably an AST issue:AST looks ok:int f(int i, int j) { i = 3, 4; j = (3, 4); return i + j; }