Skip to content

Commit 4c086d4

Browse files
*** empty log message ***
git-svn-id: file:///verilog-mode-svn/trunk@602 db5bb42b-8904-0410-88e9-aa7026cf2ec3
1 parent abbd508 commit 4c086d4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/indent_function.v

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
module t;
22
class C;
33
function int f();
4-
f = 17;
4+
f = 17;
55
endfunction
66
extern function int g();
7-
virtual function int f();
7+
virtual function int f();
88
a;
9-
endfunction // int
9+
endfunction // int
1010

1111
integer foo;
1212
endclass // C
@@ -16,6 +16,6 @@ endclass // C
1616
$display("a of f is %d, g is %d", a.f(),a.g());
1717
end
1818
function int C::g();
19-
g = 18;
19+
g = 18;
2020
endfunction
2121
endmodule

0 commit comments

Comments
 (0)