parser: fail when assigning to _ with :=

This commit is contained in:
Enzo Baldisserri 2020-06-08 00:47:04 +02:00 committed by GitHub
parent 36edd6295f
commit 11b7b97311
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
41 changed files with 137 additions and 111 deletions

View file

@ -36,7 +36,7 @@ pub fn start_reloader(mut r live.LiveReloadInfo) {
// If that fails, the program would crash anyway, just provide
// an error message to the user and exit:
r.reloads++
_ := compile_and_reload_shared_lib(mut r) or {
compile_and_reload_shared_lib(mut r) or {
eprintln( err )
exit(1)
}