GNOME Bugzilla – Bug 549512
invalid code generation of concatenated const strings
Last modified: 2008-08-27 22:22:38 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:
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 ***