Does not warn about wrong number of arguments to a method
Opened this issue · 0 comments
gwikland commented
device test;
template foo {
method hello() {
log info, 1: "hello";
}
}
template abc {
group f is foo;
method test() {
foo.hello("hello"); // Should be marked as error.
}
}
is abc;