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 538776 - Unable to use constants as properties default
Unable to use constants as properties default
Status: RESOLVED DUPLICATE of bug 530422
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-06-17 14:21 UTC by Raphael Bosshard
Modified: 2008-10-09 20:45 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
simple testcase for described bug (325 bytes, text/plain)
2008-09-30 09:32 UTC, Raphael Bosshard
Details

Description Raphael Bosshard 2008-06-17 14:21:19 UTC
Please describe the problem:
Using Vala 3.3 I'm unable to use constants as properties default values. Trying to use constants as properties default values will result in an gcc error.

Steps to reproduce:

Try to compile that piece of code.

using GLib;

namespace Test {
	public const string TESTSTRING = "This is a Teststring.";


	public class FunWithConstants {

		public string test_string { public get; private set; default = "String"; }
	
	}
	
	public int main(string[] argv){
		return 0;
	}
	
	
}

Actual results:
Results in a gcc error: 

error.c: In function 'test_fun_with_constants_instance_init':
error.c:60: error: '_tmp0' undeclared (first use in this function)
error.c:60: error: (Each undeclared identifier is reported only once
error.c:60: error: for each function it appears in.)
error: cc exited with status 256
Compilation failed: 1 error(s), 0 warning(s)


Expected results:
Successful compilation.

Does this happen every time?
Yep.

Other information:
Comment 1 Jürg Billeter 2008-09-27 09:48:24 UTC
You've probably meant

    default = TESTSTRING;

in the test case. Confirming bug.
Comment 2 Raphael Bosshard 2008-09-30 09:32:11 UTC
Created attachment 119634 [details]
simple testcase for described bug  

Updated (corrected) testcase
Comment 3 Jürg Billeter 2008-10-09 20:45:40 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 530422 ***