mirror of
https://github.com/llvm/llvm-project.git
synced 2025-05-02 15:16:08 +00:00
13 lines
107 B
C
13 lines
107 B
C
// RUN: clang %s -emit-llvm
|
|
typedef struct a b;
|
|
|
|
b* x;
|
|
|
|
struct a {
|
|
b* p;
|
|
};
|
|
|
|
void f() {
|
|
b* z = x->p;
|
|
}
|