2008-12-14 Jürg Billeter <j@bitron.ch>
* gobject/valaccodebasemodule.vala:
Detect unsupported generic type arguments in local variable
declarations
svn path=/trunk/; revision=2148
+2008-12-14 Jürg Billeter <j@bitron.ch>
+
+ * gobject/valaccodebasemodule.vala:
+
+ Detect unsupported generic type arguments in local variable
+ declarations
+
2008-12-14 Jürg Billeter <j@bitron.ch>
* gobject/valaccodebasemodule.vala:
}
public override void visit_local_variable (LocalVariable local) {
+ check_type (local.variable_type);
+
local.accept_children (codegen);
if (local.variable_type is ArrayType) {