Skip to content

Commit d025e62

Browse files
authored
fmt
1 parent c733e53 commit d025e62

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

testdata/default/linking/samefile_union/SameFileUnion.t.sol

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,14 @@ pragma solidity ^0.8.18;
44
import "./Libs.sol";
55

66
contract UsesBoth {
7-
uint public x;
7+
uint256 public x;
8+
89
constructor() {
9-
// used only in в creation bytecode
10+
// used only in creation bytecode
1011
x = LInit.f();
1112
}
12-
function y() external pure returns (uint) {
13+
14+
function y() external pure returns (uint256) {
1315
// used only in deployed bytecode
1416
return LRun.g();
1517
}

0 commit comments

Comments
 (0)