1// { dg-do assemble  }
2typedef int Int;
3
4Int Int_object_1;
5
6void test ()
7{
8        ((Int) Int_object_1) = Int_object_1; /* { dg-error "" } not an lvalue*/
9}
10