aboutsummaryrefslogtreecommitdiffstats
path: root/test/libyul/yulOptimizerTests/fullSimplify/constants.yul
blob: b9c7c1fcd124caf1cc8c85a826993fa4b22813d5 (plain) (blame)
1
2
3
4
5
6
7
8
9
{
    let a := add(1, mul(3, 4))
    mstore(0, a)
}
// ----
// fullSimplify
// {
//     mstore(0, 13)
// }