solidity/test/libsolidity/semanticTests/libraries/library_enum_as_an_expression.sol
2022-05-19 20:23:28 +02:00

15 lines
173 B
Solidity

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