solidity/test/libsolidity/smtCheckerTests/types/enum_in_library_2.sol
2020-03-11 16:29:07 +01:00

18 lines
250 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: (159-179): Assertion violation happens here