1
0
mirror of https://github.com/golang/go synced 2024-09-24 15:30:13 -06:00
go/test/fixedbugs/bug163.go
Russ Cox 8a1bfe89b2 change bug163 to use actual non-letter in identifier
R=r,iant
DELTA=1  (0 added, 0 deleted, 1 changed)
OCL=31146
CL=31148
2009-07-03 13:33:00 -07:00

14 lines
262 B
Go

// errchk $G $D/$F.go
// Copyright 2009 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
import "fmt"
func main() {
xy := 1; // ERROR "identifier"
}