Clang Project

clang_source_code/test/CodeGen/typedef.c
1// RUN: %clang_cc1 -emit-llvm %s -o -
2
3typedef struct { int i; } Value;
4typedef Value *PValue;
5
6int get_value(PValue v) {
7  return v->i;
8}
9