forked from github/verilator
parent
47e64535d6
commit
47262cd4ec
@ -3218,6 +3218,7 @@ private:
|
||||
nodep->dtypeFrom(ftaskp);
|
||||
nodep->classOrPackagep(classp);
|
||||
if (VN_IS(ftaskp, Task)) nodep->makeStatement();
|
||||
processFTaskRefArgs(nodep);
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
21
test_regress/t/t_class_method_str_literal.pl
Executable file
21
test_regress/t/t_class_method_str_literal.pl
Executable file
@ -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;
|
28
test_regress/t/t_class_method_str_literal.v
Normal file
28
test_regress/t/t_class_method_str_literal.v
Normal file
@ -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
|
Loading…
Reference in New Issue
Block a user