aboutsummaryrefslogtreecommitdiff
path: root/test/fixedbugs/issue21808.go
blob: d146200eaee7d53372fa4c9aab593264eb608e5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// run

// Copyright 2017 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.

// Make sure println() prints a blank line.

package main

import "fmt"

func main() {
	fmt.Println("A")
	println()
	fmt.Println("B")
}