warp
warp copied to clipboard
Structs
The code should transpile:
pragma solidity ^0.8.6;
contract WARP {
struct S {
uint8 a;
uint256 b;
}
function createManual() pure public {
S memory s = S(2,5);
}
}