solidity/test/libsolidity/smtCheckerTests/types/contract.sol
2019-04-17 16:30:11 +02:00

11 lines
167 B
Solidity

pragma experimental SMTChecker;
contract C
{
function f(C c, C d) public pure {
assert(c == d);
}
}
// ----
// Warning: (84-98): Assertion violation happens here