// S : tags $TAGS // S : expect --result valid // S : cc -o test.bc $CC_OPT $file // S : verify $V_OPT test.bc #include #include int main() { char buf[ 15 ] = "b\nx"; strcpy( buf, buf + 2 ); assert( !strcmp( buf, buf + 2 ) ); }