blob: 7f78b91fb17e231ce8b50c2797503874a2d6918a [file] [log] [blame]
Daniel Dunbard7d5f022009-03-24 02:24:46 +00001// RUN: clang-cc %s -emit-llvm -o -
Lauro Ramos Venancio8df106e2008-01-30 21:21:08 +00002struct test;
3
4typedef void (*my_func) (struct test *);
5my_func handler;
6
7struct test {
8 char a;
9};
10
11char f(struct test *t) {
12 return t->a;
13}