1 2 3 4 5 6
contract C { function f() public pure returns (uint) { return abi.decode("abc", (uint)); } } // ----