blob: 501863437d1e4a47132c4d0db6e9bee199c4c964 [file] [log] [blame]
module top(input in, output out);
function func;
input arg;
func = arg;
endfunction
assign out = func(in);
endmodule