blob: a491bb21a57a031a6e26fd0d7fee5b177709380c (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// Check that `<-` and `in` syntax gets a hard error.
fn foo() {
let (x, y) = (0, 0);
x <- y; //~ ERROR unexpected token: `<-`
}
fn main() {
let (foo, bar) = (0, 0);
in(foo) { bar }; //~ ERROR expected expression, found keyword `in`
}
|