blob: ba307f4d19398f4eb85978b29aae584cccf39f39 [file] [log] [blame]
// RUN: clang %s -emit-llvm -o -
struct test;
typedef void (*my_func) (struct test *);
my_func handler;
struct test {
char a;
};
char f(struct test *t) {
return t->a;
}