aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/nameAndTypeResolution/379_inline_assembly_constant_assign.sol
blob: c8928804f4a5d58f5983d5447a62f0a79c0375dd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
contract test {
    uint constant x = 1;
    function f() public {
        assembly {
            x := 2
        }
    }
}
// ----
// TypeError: (98-99): Constant variables not supported by inline assembly.