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 549512 - invalid code generation of concatenated const strings
invalid code generation of concatenated const strings
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:35 UTC by Matias
Modified: 2008-08-27 22:22 UTC
See Also:
GNOME target: ---
GNOME version: ---



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

const string foo = "hello" + "bye";

produce this C code:

const char* foo = "hello" + "bye";

should be converted to:

const char* foo = "hello" "bye";


Steps to reproduce:


Actual results:


Expected results:


Does this happen every time?


Other information:
Comment 1 Jürg Billeter 2008-08-27 22:22:38 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 ***