contract ExampleContract {

	function useArrayForUint256(uint256[] calldata input) public pure returns (uint256[] memory) {
		return input;
	}
}