mirror of
https://github.com/darlinghq/darling-dyld.git
synced 2024-11-23 12:29:44 +00:00
13 lines
102 B
C
13 lines
102 B
C
|
|
int g = 0;
|
|
|
|
int bar() {
|
|
return g;
|
|
}
|
|
|
|
__typeof(&bar) barPtr = &bar;
|
|
|
|
int baz() {
|
|
return barPtr();
|
|
}
|