资讯

Example class Base; function new (int x); endfunction endclass class Derived extends Base; function new; int x = 1; super.new (x); endfunction endclass Above code snippet verilates but fails on C++ ...
verilator does not check consistency between declaration and implementation of methods #6207 ...