Skip to content

Commit 6855ca5

Browse files
committed
Create Libs.sol
1 parent bce5c52 commit 6855ca5

File tree

1 file changed

+9
-0
lines changed
  • testdata/default/linking/samefile_union

1 file changed

+9
-0
lines changed
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
// SPDX-License-Identifier: UNLICENSED
2+
pragma solidity ^0.8.18;
3+
4+
library LInit {
5+
function f() internal pure returns (uint) { return 1; }
6+
}
7+
library LRun {
8+
function g() internal pure returns (uint) { return 2; }
9+
}

0 commit comments

Comments
 (0)