mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-08-13 16:09:46 -04:00
13 lines
118 B
C
13 lines
118 B
C
// RUN: %clang_cc1 %s -emit-llvm -o %t
|
|
typedef struct a b;
|
|
|
|
b* x;
|
|
|
|
struct a {
|
|
b* p;
|
|
};
|
|
|
|
void f() {
|
|
b* z = x->p;
|
|
}
|