mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
15 lines
173 B
Solidity
15 lines
173 B
Solidity
library Arst {
|
|
enum Foo {Things, Stuff}
|
|
}
|
|
|
|
|
|
contract Tsra {
|
|
function f() public returns (uint256) {
|
|
Arst.Foo;
|
|
return 1;
|
|
}
|
|
}
|
|
|
|
// ----
|
|
// f() -> 1
|