aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/inlineAssembly/storage_reference_empty_slot.sol
blob: d493a68a54c6fd4ee2825288fb7cf0da62f5f004 (plain) (blame)
1
2
3
4
5
6
7
8
9
contract C {
    function f() public pure {
        assembly {
            _slot
        }
    }
}
// ----
// DeclarationError: (75-80): In variable names _slot and _offset can only be used as a suffix.