summaryrefslogtreecommitdiffstats
path: root/src/go/parser/testdata/issue34946.src
blob: 6bb15e10c771b221cfb5df2475a4c854a6dd28c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Copyright 2019 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.

// Test case for issue 34946: Better synchronization of
// parser for function declarations that start their
// body's opening { on a new line.

package p

// accept Allman/BSD-style declaration but complain
// (implicit semicolon between signature and body)
func _() int
{ /* ERROR "unexpected semicolon or newline before {" */
	{ return 0 }
}

func _() {}

func _(); { /* ERROR "unexpected semicolon or newline before {" */ }

func _() {}