aboutsummaryrefslogtreecommitdiffstats
path: root/progs/tests/constant/declaration_order_wrong.sy
blob: 37f505000448152c9f893ecd2ec2e939d06689e1 (plain) (blame)
1
2
3
4
5
6
7
8
a :: b + 1
b :: 1

start :: fn {
    a <=> b + 1
}

// errors: [ErrorKind::SyntaxError(1, _)]