blob: 4768d7e04c335e8e4cea99a30bb172a0a228517f [file] [log] [blame]
// RUN: clang -g -emit-llvm -o %t %s
struct s0;
struct s0 { struct s0 *p; } g0;
struct s0 *f0(struct s0 *a0) {
return a0->p;
}