2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.dg / ext / lvalue1.C
blob98e63a7a309544e63684966fad29e65bb1a36d3b
1 // Test that we complain about the gcc cast-as-lvalue extension.
3 int main ()
5   char c;
7   static_cast<int>(c) = 2; // { dg-error "lvalue" "not an lvalue" { xfail *-*-* } }
9   return c != 2;