10 lines
142 B
Text
10 lines
142 B
Text
|
--TEST--
|
||
|
Strings, c-style string merging. We only keep the first one
|
||
|
--INPUT--
|
||
|
SELECT "FOO" "BAR";
|
||
|
--EXPECTED--
|
||
|
E SELECT
|
||
|
s "FOO"
|
||
|
s "BAR"
|
||
|
; ;
|