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 538166 - unable to apply "+" on constant strings at initialization
unable to apply "+" on constant strings at initialization
Status: RESOLVED DUPLICATE of bug 516287
Product: vala
Classification: Core
Component: Code Generator
0.3.x
Other All
: Normal normal
: ---
Assigned To: Vala maintainers
Vala maintainers
Depends on:
Blocks:
 
 
Reported: 2008-06-13 16:07 UTC by Raphael Bosshard
Modified: 2008-06-28 17:17 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Raphael Bosshard 2008-06-13 16:07:58 UTC
Please describe the problem:
Defining a constant string and trying to initialize it by concatenating eg. another constant with a string will result in a gcc error.



Steps to reproduce:
using GLib;

public class FunWithConstants {

	public const string TESTSTRING = "This is a Teststring.";
	public const string ANOTHER_TESTSTRING = TESTSTRING + "This is another Teststring.";
	


	public int main(string[] argv){
		stdout.printf(ANOTHER_TESTSTRING);
		return 0;
	}
}

Will result in an error:

error.c: In function »fun_with_constants_main«:
error.c:19: Error: Invalid operand for binary +
error: cc exited with status 256
Compilation failed: 1 error(s), 0 warning(s)

Looking at the header file, the culprit:

#define FUN_WITH_CONSTANTS_TESTSTRING "This is a Teststring."
#define FUN_WITH_CONSTANTS_ANOTHER_TESTSTRING FUN_WITH_CONSTANTS_TESTSTRING + "This is another Teststring."

Expected result 

#define FUN_WITH_CONSTANTS_TESTSTRING "This is a Teststring."
#define FUN_WITH_CONSTANTS_ANOTHER_TESTSTRING FUN_WITH_CONSTANTS_TESTSTRING  "This is another Teststring."




Actual results:


Expected results:


Does this happen every time?


Other information:
Comment 1 Sebastian Pölsterl 2008-06-28 15:13:12 UTC
I can confirm this error. Just ran into it myself.
Comment 2 Jaap A. Haitsma 2008-06-28 17:17:45 UTC

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