solidity/test/libsolidity/semanticTests/freeFunctions/free_runtimecode.sol

18 lines
246 B
Solidity

contract C {
uint public x = 2;
}
function test() returns (bool) {
return type(C).runtimeCode.length > 20;
}
contract D {
function f() public returns (bool) {
return test();
}
}
// ====
// compileViaYul: true
// ----
// f() -> true