solidity/test/libsolidity/syntaxTests/controlFlow/localStorageVariables/assembly/stub_declaration.sol

13 lines
186 B
Solidity
Raw Normal View History

contract C {
struct S { bool f; }
S s;
function f() internal pure {
S storage c;
assembly {
c_slot := s_slot
}
c;
}
}
// ----