solidity/test/libsolidity/semanticTests/libraries/library_enum_as_an_expression.sol
2023-05-11 10:56:55 -05:00

14 lines
172 B
Solidity

library Arst {
enum Foo {Things, Stuff}
}
contract Tsra {
function f() public returns (uint256) {
Arst.Foo;
return 1;
}
}
// ----
// f() -> 1