sv2v/test/error/end_label_function_wrong.sv

7 lines
134 B
Systemverilog

// pattern: element "yes" has mismatched end label "no"
module top;
function yes;
yes = 0;
endfunction : no
endmodule