build: bump "prb-test"

style: fix formatting in "Foo.sol"
This commit is contained in:
Paul Razvan Berg 2023-03-04 12:37:52 +02:00
parent e57e9643a2
commit 0895f34932
No known key found for this signature in database
GPG Key ID: 94DB130BAB397DED
2 changed files with 2 additions and 6 deletions

@ -1 +1 @@
Subproject commit 99c2cd52a755150fafa198f1479f0d2325456e07
Subproject commit 28aaf19d4fea85b2000431ced340002e808abb64

View File

@ -2,11 +2,7 @@
pragma solidity >=0.8.19;
contract Foo {
function id(uint256 value)
external
pure
returns (uint256)
{
function id(uint256 value) external pure returns (uint256) {
return value;
}
}