aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8/gcc/testsuite/g++.dg/lto/20101126-1_0.C
blob: 93a1cf3afba4b08653336e2f4cb948267cf00c40 (plain)
1
2
3
4
5
typedef struct { int i; } T1;
typedef T1 T2;
extern T1 a;
extern T2 b;
int main() { return a.i + b.i; }