1 2 3 4 5 6 7 8 9 10 11 12
int g = 0; int bar() { return g; } __typeof(&bar) barPtr = &bar; int baz() { return barPtr(); }