diff --git a/src/V3Width.cpp b/src/V3Width.cpp index a9f784e06..9b85d5c12 100644 --- a/src/V3Width.cpp +++ b/src/V3Width.cpp @@ -3218,6 +3218,7 @@ private: nodep->dtypeFrom(ftaskp); nodep->classOrPackagep(classp); if (VN_IS(ftaskp, Task)) nodep->makeStatement(); + processFTaskRefArgs(nodep); } return; } diff --git a/test_regress/t/t_class_method_str_literal.pl b/test_regress/t/t_class_method_str_literal.pl new file mode 100755 index 000000000..b46d46042 --- /dev/null +++ b/test_regress/t/t_class_method_str_literal.pl @@ -0,0 +1,21 @@ +#!/usr/bin/env perl +if (!$::Driver) { use FindBin; exec("$FindBin::Bin/bootstrap.pl", @ARGV, $0); die; } +# DESCRIPTION: Verilator: Verilog Test driver/expect definition +# +# Copyright 2003 by Wilson Snyder. This program is free software; you +# can redistribute it and/or modify it under the terms of either the GNU +# Lesser General Public License Version 3 or the Perl Artistic License +# Version 2.0. +# SPDX-License-Identifier: LGPL-3.0-only OR Artistic-2.0 + +scenarios(simulator => 1); + +compile( + ); + +execute( + check_finished => 1, + ); + +ok(1); +1; diff --git a/test_regress/t/t_class_method_str_literal.v b/test_regress/t/t_class_method_str_literal.v new file mode 100644 index 000000000..3e5e9225d --- /dev/null +++ b/test_regress/t/t_class_method_str_literal.v @@ -0,0 +1,28 @@ +// DESCRIPTION: Verilator: Verilog Test module +// +// This file ONLY is placed under the Creative Commons Public Domain, for +// any use, without warranty, 2022 by Wilson Snyder. +// SPDX-License-Identifier: CC0-1.0 + +module t; + +class T; + function automatic void print_str(input string a_string); + $display(a_string); + endfunction + + static function automatic void static_print_str(input string a_string); + $display(a_string); + endfunction +endclass + + +initial begin + T t_c = new; + t_c.print_str("function though member"); + t_c.static_print_str("static function through member"); + T::static_print_str("static function through class"); + $write("*-* All Finished *-*\n"); + $finish; +end +endmodule