mirror of
https://github.com/golang/go
synced 2024-11-05 18:36:08 +00:00
64cd86798b
Use a combination of follow- and stop-token lists and nesting levels to better synchronize parser after a syntax error. Fixes #13319. Change-Id: I9592e0b5b3ba782fb9f9315fea16163328e204f7 Reviewed-on: https://go-review.googlesource.com/17080 Reviewed-by: Chris Manghane <cmang@golang.org>
18 lines
410 B
Go
18 lines
410 B
Go
// errorcheck
|
|
|
|
// Copyright 2015 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package main
|
|
|
|
func f(int, int) {
|
|
switch x {
|
|
case 1:
|
|
f(1, g() // ERROR "expecting \)|expecting comma or \)"
|
|
case 2:
|
|
f()
|
|
case 3:
|
|
f(1, g() // ERROR "expecting \)|expecting comma or \)"
|
|
}
|
|
}
|