mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
12 lines
331 B
Solidity
12 lines
331 B
Solidity
contract C {
|
|
/// @custom:smtchecker abstract-function
|
|
function f(uint x) internal pure returns (uint) {
|
|
return x;
|
|
}
|
|
}
|
|
// ====
|
|
// SMTEngine: chc
|
|
// ----
|
|
// Warning 3130: (56-120): Unknown option for "custom:smtchecker": "abstract-function"
|
|
// Warning 3130: (56-120): Unknown option for "custom:smtchecker": "abstract-function"
|