Opened 5 years ago
Closed 3 months ago
#222 closed defect (duplicate)
Empty parameter list in nested forall clause generates unused parameter
| Reported by: | f37yu | Owned by: | |
|---|---|---|---|
| Priority: | major | Component: | cfa-cc |
| Version: | 1.0 | Keywords: | |
| Cc: |
Description (last modified by )
forall (dtype T) {
forall ( | {void foo (T *); }) void bar (T *);
}
this declaration is parsed as
forall (dtype T, dtype __anonymous | {void foo (T *); }) ...
causes a wrong cost at resolution.
Change History (2)
comment:1 by , 5 years ago
| Description: | modified (diff) |
|---|
comment:2 by , 3 months ago
| Resolution: | → duplicate |
|---|---|
| Status: | new → closed |
Note:
See TracTickets
for help on using tickets.
Closing as a duplicate of #185; this ticket gives a cause but not an outcome.
The symptom described here was fixed by [119889f].
A refreshed explanation of cause is being added to #185.