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