blob: 7f78b91fb17e231ce8b50c2797503874a2d6918a [file] [log] [blame]
// RUN: clang-cc %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;
}