forked from OSchip/llvm-project
10 lines
92 B
C
10 lines
92 B
C
![]() |
// RUN: clang %s -emit-llvm
|
||
|
struct test {
|
||
|
int a;
|
||
|
};
|
||
|
|
||
|
extern struct test t;
|
||
|
|
||
|
int *b=&t.a;
|
||
|
|