aboutsummaryrefslogtreecommitdiffstats
path: root/test/libyul/yulOptimizerTests/redundantAssignEliminator/simple.yul
blob: 913a7694117dd75f7d873d51fc6641fcdeca3c54 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{
    let a
    a := 1
    a := 2
}
// ----
// redundantAssignEliminator
// {
//     let a
// }