GNOME Bugzilla – Bug 636509
Criticals when initializing static field
Last modified: 2014-08-29 14:56:27 UTC
Created attachment 175865 [details] Sample code When compiling the attached code I get: ** (valac:14695): CRITICAL **: vala_ccode_function_add_declaration: assertion `self != NULL' failed ** (valac:14695): CRITICAL **: vala_ccode_function_add_expression: assertion `self != NULL' failed ** (valac:14695): CRITICAL **: vala_ccode_function_add_declaration: assertion `self != NULL' failed ** (valac:14695): CRITICAL **: vala_ccode_function_add_expression: assertion `self != NULL' failed ** (valac:14695): CRITICAL **: vala_ccode_function_add_expression: assertion `self != NULL' failed backtrace:
+ Trace 224988
Created attachment 197289 [details] GDB backtrace This issue is still present with 0.14: ** (valac:12824): CRITICAL **: vala_ccode_function_add_declaration: assertion `self != NULL' failed ** (valac:12824): CRITICAL **: vala_ccode_function_add_expression: assertion `self != NULL' failed ** (valac:12824): CRITICAL **: vala_ccode_function_add_assignment: assertion `self != NULL' failed
Non-constant expressions are not allowed as initializer for static fields in compact classes. valac should report a compile-time error. In your example it might work to just drop explicit initialization.
Created attachment 240261 [details] [review] Disallow the use of non-constant initializers of static fields in compact classes Fixes bug 636509
commit aa52b5be484f0c3d4dfcafe249bdf1c72265c778 Author: Simon Werbeck <simon.werbeck@gmail.com> Date: Sun Mar 31 23:39:32 2013 +0200 Forbid non-constant initializers for static fields in compact classes Fixes bug 636509 This problem has been fixed in the development version. The fix will be available in the next major software release. Thank you for your bug report.