aboutsummaryrefslogtreecommitdiff
path: root/tests/errors/arithmetic_incompatible_types.amal
blob: 367e5eddf2ce131b7dfe179a1ab4557225fdc0b0 (plain)
1
2
3
4
5
const main = fn {
    const value = 23;
    const value2 = "sadsa";
    const value3 = value + value2;
}