bytes32 constant SAMPLE_STORAGE_POSITION = keccak256("sample.storage");
function s() internal pure returns (SampleStorage storage storageStruct);
storageStruct
SampleStorage
function sampleUpgradeFunction() external view onlyOwner returns (string memory);
struct SampleStorage { uint256 v1; }