mirror of
https://github.com/byteworksinc/ORCA-C.git
synced 2024-11-16 13:09:16 +00:00
13 lines
256 B
C++
13 lines
256 B
C++
/* Conformance Test 2.4.0.1: Ensure =+ is assigment followed by unary plus */
|
|
main ()
|
|
{
|
|
int a;
|
|
|
|
a = 3;
|
|
a =+ 2;
|
|
if (a == 2)
|
|
printf ("Passed Conformance Test 2.4.0.1\n");
|
|
else
|
|
printf ("Failed Conformance Test 2.4.0.1\n");
|
|
}
|