1 typedef float float4;
2 
3 int a();
4 
main()5 int main() {
6   float4 f = 4.0f;
7   // break here
8   return a();
9 }
10