solidity/test/libsolidity/smtCheckerTests/types/contract.sol
2020-07-23 18:49:03 +02:00

11 lines
172 B
Solidity

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