1// RUN: %clang_cc1 %s -emit-llvm -o %t2typedef struct a b;3 4b* x;5 6struct a {7 b* p;8};9 10void f(void) {11 b* z = x->p;12}13