Skip to content

Commit c733e53

Browse files
authored
fmt
1 parent 18cf19b commit c733e53

File tree

1 file changed

+7
-2
lines changed
  • testdata/default/linking/samefile_union

1 file changed

+7
-2
lines changed

testdata/default/linking/samefile_union/Libs.sol

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,13 @@
22
pragma solidity ^0.8.18;
33

44
library LInit {
5-
function f() internal pure returns (uint) { return 1; }
5+
function f() internal pure returns (uint256) {
6+
return 1;
7+
}
68
}
9+
710
library LRun {
8-
function g() internal pure returns (uint) { return 2; }
11+
function g() internal pure returns (uint256) {
12+
return 2;
13+
}
914
}

0 commit comments

Comments
 (0)