After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 549513 - invalid code generation of concatenated strings in const array
invalid code generation of concatenated strings in const array
Status: RESOLVED DUPLICATE of bug 516287
Product: vala
Classification: Core
Component: Code Generator
0.3.x
Other All
: Normal normal
: ---
Assigned To: Jürg Billeter
Vala maintainers
Depends on:
Blocks:
 
 
Reported: 2008-08-26 21:39 UTC by Matias
Modified: 2008-08-27 22:22 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Matias 2008-08-26 21:39:51 UTC
Please describe the problem:
This vala code:

const string[] foo = { "string1", "string2", "string3" + "string4" }

produce this c code:

static const char* SAMPLE_foo[] = {"string1", "string2", (_tmp0 = g_strconcat ("string3", "string4", NULL))};

should produce this code:

static const char* SAMPLE_foo[] = {"string1", "string2", "string3" "string4"};


Steps to reproduce:



Actual results:


Expected results:


Does this happen every time?


Other information:
Comment 1 Jürg Billeter 2008-08-27 22:22:48 UTC
Thanks for the bug report. This particular bug has already been reported into our bug tracking system, but please feel free to report any further bugs you find.


*** This bug has been marked as a duplicate of 516287 ***