From: Robert Griesemer Date: Mon, 16 Nov 2015 20:40:45 +0000 (-0800) Subject: test: add test case for issue #13248 X-Git-Tag: go1.6beta1~422 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=48a14663f8066f2643d163cec88f3fd526d08e67;p=gostls13.git test: add test case for issue #13248 Issue #13248 was fixed by https://go-review.googlesource.com/#/c/16930/. This is the corresponding test case (original offending program). Change-Id: I7c99783db74a5422704409cea7e5073094beadd3 Reviewed-on: https://go-review.googlesource.com/16973 Reviewed-by: Chris Manghane --- diff --git a/test/fixedbugs/issue13248.go b/test/fixedbugs/issue13248.go new file mode 100644 index 0000000000..d01b8232e7 --- /dev/null +++ b/test/fixedbugs/issue13248.go @@ -0,0 +1,13 @@ +// 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. + +// This program caused an infinite loop with the recursive-descent parser. + +package main + +func main() { + foo( +} // ERROR "unexpected }"