solidity/test/libsolidity/smtCheckerTests/types/enum_in_library_2.sol

18 lines
255 B
Solidity

pragma experimental SMTChecker;
library L
{
enum D { Left, Right }
}
contract C
{
enum E { Left, Right }
function f(E _d) public pure {
_d = E.Right;
assert(_d == E.Left);
}
}
// ----
// Warning 4661: (159-179): Assertion violation happens here