Implement indirection operator (`*`) for structs and function pointers
Open
area:compiler
kind:feature
status:help-wanted
- Dominant language
- C#
- Stars
- 451
- Forks
- 49
- Avg merge
- 13h 59m
- Merged PRs (30d)
- 6
Description
It should be possible to use indirection operator (`*`):
- with pointers to structs
```c
foo x;
foo *y = x;
foo z = *y;
```
- with function pointers. Please note, that indirection on function pointer is not an lvalue.
Contributor guide
Assessment
This issue has not been assessed yet.