mirror of
https://github.com/intel/llvm.git
synced 2026-02-02 02:00:03 +08:00
13 lines
116 B
C
13 lines
116 B
C
// RUN: clang-cc %s -emit-llvm -o %t
|
|
typedef struct a b;
|
|
|
|
b* x;
|
|
|
|
struct a {
|
|
b* p;
|
|
};
|
|
|
|
void f() {
|
|
b* z = x->p;
|
|
}
|