blob: f82a135415a2baf0c05d447d2be9cff4337ecd6a [file] [log] [blame]
Lauro Ramos Venancio5bfe18c2008-01-30 21:23:20 +00001// RUN: clang %s -emit-llvm
2struct test {
3 int a;
4};
5
6extern struct test t;
7
8int *b=&t.a;
9