mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
20 lines
243 B
Solidity
20 lines
243 B
Solidity
library Arst {
|
|
struct Foo {
|
|
int256 Things;
|
|
int256 Stuff;
|
|
}
|
|
}
|
|
|
|
|
|
contract Tsra {
|
|
function f() public returns (uint256) {
|
|
Arst.Foo;
|
|
return 1;
|
|
}
|
|
}
|
|
|
|
// ====
|
|
// compileViaYul: also
|
|
// ----
|
|
// f() -> 1
|