blob: 42d4f5a19603fe188d90054830b28d74527902ac [file] [log] [blame]
Douglas Gregor6f4a69a2009-07-06 15:38:40 +00001// RUN: clang -fsyntax-only -Xclang -verify %s
2struct {unsigned x : 2;} x;
3__typeof__((x.x+=1)+1) y;
4__typeof__(x.x<<1) y;
5int y;
6
7
8struct { int x : 8; } x1;
9long long y1;
10__typeof__(((long long)x1.x + 1)) y1;