I'm not sure the spacing surrounding `&` is intentional or not? ```c $ clang-format func.c int main(int argc, char *argv) { func((void *)&a); func((void (**)(void)) & b); return 0; } ```