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