Actions
Bug #11295
open$argi does not work for source code queries
Status:
New
Priority:
High
Assignee:
-
Category:
Code querying
Start date:
01/17/2022
Due date:
% Done:
0%
Estimated time:
Detected in build:
git
Platform:
Published in build:
Description
For instance, for the following aspect:
query: call(int get_property(const char *))
{
$fprintf<"work/info.txt", "%s %s\n", "get", $arg1>;
}
and the following C source file:
int get_property(const char *);
void func(void)
{
int prop1_val;
prop1_val = get_property("prop1");
}
there is such the failure:
internal compiler error: required parameter has number "1" that exceeds the maximum one "0"
Actions