]> matita.cs.unibo.it Git - pkg-cerco/acc-trusted.git/blob - tests/test6.c
Imported Upstream version 0.1
[pkg-cerco/acc-trusted.git] / tests / test6.c
1 int foo(int x) {
2         return (x+1);
3 }
4
5 int main() {
6         int (*goo)(int x);
7         goo = foo;
8         return ((*goo)(3));
9 }