summaryrefslogtreecommitdiffstats
path: root/test/CodeGen/typedef.c
blob: 4af9d819f026f5f42c2bc4223a6cdc585a7174c5 (plain)
1
2
3
4
5
6
7
8
// RUN: %clang_cc1 -emit-llvm %s -o -

typedef struct { int i; } Value;
typedef Value *PValue;

int get_value(PValue v) {
  return v->i;
}