solang-parser 0.2.1

Solang Solidity Parser
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
{
    let x:u256
    let y := x
    let z:bool
    z := y
    y := z
}
// ====
// dialect: evmTyped
// ----
// TypeError 9547: (51-52): Assigning a value of type "u256" to a variable of type "bool".
// TypeError 9547: (62-63): Assigning a value of type "bool" to a variable of type "u256".